@Fox Thank you very much, Your Regex worked smoothly..:)
Recursive Regex
-
I have regex like here https://regex101.com/r/H1pZb5/1 and i want to get Group1 form Match2, how to do this in BAS? If i do like https://gyazo.com/4c7472a71098cff82ec9d20a63b00efd i get empty on TOKEN2
-
@gudolik said in Recursive Regex:
I have regex like here https://regex101.com/r/H1pZb5/1 and i want to get Group1 form Match2, how to do this in BAS? If i do like https://gyazo.com/4c7472a71098cff82ec9d20a63b00efd i get empty on TOKEN2

This means that the text to which you apply your regular expression is different from what you specified on the site regex101.com
Test script
Try this regular expression:
_csrf_token"\svalue="(.*?)" -
@gudolik said in Recursive Regex:
@Fox Thats what i got in bas and my question is how to get Group1 form Match2 like here https://regex101.com/r/H1pZb5/1 . Your test script does same as mine which is gets Group1 form Match1 not from Match2
GROUP variables contain parenthesized groups, not complete matches. This is indicated in the action description

Test script