I am trying to extract a section of text that looks something like this:
Thing 2A blah blah Thing 2A blah blah Thing 3
Where the "3" above could actually be ANY single digit. The code I have that doesn't work is:
((Thing\s2A).+?(Thing\s\d))
Since the 3 could be any single digit, I cannot simply replace the "\d" with "3". I tried the following code, but it doesn't work either:
((Thing\s2A).+?(Thing\s\d[^A]))
Please help!