The problem I am facing is that if I have this string:
STARTGAME grindurr 9 51 19 3 7 1 2 2 0
…I want to extract name grindurr from the middle. I tried this regex:
STARTGAME\t.*\t[^\d]
…but it didn’t work. 🙁 Can anyone tell me what I’m doing wrong?
might work. The result is then in the first capturing group. You can remove the need for the capturing group by using lookaround, but I don’t know the exact capabilities by that regex engine, so above is probably the safest way.