Thanks, I solved the problem now by a bit trial and error, but I have forgotten to mention that my string looks more like this:
Code:
"BANNED" "is banned on Betreutes Zocken: Verdacht auf Cheat/ Multiacc."\r
"BANNED" "is banned on Puppets: Wallhack"\r
"BANNED" "is banned on Zechhalle Hamburg: VAC ban(s) on record"\r
So now this pattern works for me to get the first match:
Code:
"^"BANNED^" ^"is banned on ([^^:]+): ([^^^r]+)^"^r"
But my final question is, is there a possibility to get all matches from the entire string at once, or do I need to split the string on \r, and then try to match for every line?