cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
New to using JMP? Hit the ground running with the Early User Edition of Discovery Summit. Register now, free of charge.
Register for our Discovery Summit 2024 conference, Oct. 21-24, where you’ll learn, connect, and be inspired.
Choose Language Hide Translation Bar
Sean_ShCn0
Level II

How to use Regular expression to get characters?

A simple question, please find the attachment as a demo. 

the requirement as following, it is required to take some information from :Label column, to two new column, details find the pic "image.png".

thanks in advance.

KR

Sean

1 REPLY 1
jthi
Super User

Re: How to use Regular expression to get characters?

Just based on your example you don't need regex as Word() might be enough

 

For F

 

Word(-2, str, ",F+S"); // "18441"

for S

 

 

Word(-1, str, ",F+S"); // "18442"

 

Example

Names Default To Here(1);

str = "-F19,S20+F18441,S18442";

Show(Word(-2, str, ",F+S"));
Show(Word(-1, str, ",F+S"));

 

-Jarmo