],[
Thanks!
t1=Regex(txt,"],[","\!n",globalreplace);//??
Go to Solution
You need to escape [ and ] in regex (you could also use Substitute/Substitute Into)
Names Default To Here(1); txt = "a],[b"; t1 = Regex(txt, "\!],\!\[", "\!n", GLOBALREPLACE); t2 = Substitute(txt, "],[", "\!N"); show(t1, t2);
https://www.jmp.com/support/help/en/17.0/index.shtml#page/jmp/jsl-syntax-rules.shtml
https://www.jmp.com/support/help/en/17.0/index.shtml#page/jmp/escaped-characters-in-regular-expressi...
View solution in original post