cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
Choose Language Hide Translation Bar
View Original Published Thread

JSL Regex matching square brackets [ ]

ithomasja
Level I

ithomasja_0-1741020356758.png

 

 

 

\[ doesnt seem to go well within quotes.. Is there a solution here?

1 REPLY 1
jthi
Super User


Re: JSL Regex matching square brackets [ ]

You need to do some extra escaping for the opening

str = "i am {name} [age]";
reg = Regex(str, "\!\[\w+\]");

https://www.jmp.com/support/help/en/18.1/jmp/jsl-syntax-rules.shtml

 

Edit: Some explanation here How do you replace square brackets "[" "]" in a string with Regex? (JMP strings make a special case of \[ and ]\ anywhere in a JMP string to turn off JMP's escaping.)

-Jarmo