cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Register to attend Discovery Summit 2025 Online: Early Users Edition, Sept. 24-25.
  • New JMP features coming to desktops everywhere this September. Sign up to learn more at jmp.com/launch.
Choose Language Hide Translation Bar
ithomasja
Level I

JSL Regex matching square brackets [ ]

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

Recommended Articles