Regex issue with escaped characters
I'm having a problem with regex and bracket characters.This JSL snippet:Show(Regex("abcdef[ghi]", "([^\[]*)\[([^\]]*)\]", "\1{\2}"))
doesn't work in JMP (14.1). It gives the following error:Unexpected "([^]*)\[([^\]]*)\]", "\1{\2}"))". Perhaps there is a missing "," or ")".
Trying to parse arguments of function "Regex".
However, this is valid regex in my Perl regex tester. ( I use Patterns on OS X.)...