I would like to ask questions about regular expressions
Can you search this in a match?
Such as:
(possibly there are many times in the web page)
(there may be many times in the web page, but may not appear in , is in the
123
b>
456
b>
(there may be many times in the web page, but may not appear in , is also in the
789
c>
My purpose is to find all the > matching items, and then obtain the value between b> as shown in the example
In this case, the return value is 123456. Ignore for b> in
Special statement: To ensure the order of display of web pages, the method of replacing the matching position should be used.
I don't know how this regular expression should be written?
Thank you first!