Hi @Skizzerz, I am migrating from the Regex Fun extension to the RegexFunctions extension, but I couldn't get the same result from this regex, could you please help me?
Input: $a São Paulo :$b Fundação Perseu Abramo,$c 2013.
Result expected: Fundação Perseu Abramo,
Regex Fun:
{{#regex:$a São Paulo : $b Fundação Perseu Abramo, $c 2013.|/\$b(.*?)(?=\$){{!}}\$b(.*)/}}
Result: Fundação Perseu Abramo,
RegexFunctions:
{{#rmatch:$a São Paulo : $b Fundação Perseu Abramo, $c 2013.|/\$b(.*?)(?=\$){{!}}\$b(.*)/|$1}}
Result: (nothing)