cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Sign-in to the JMP Community will be unavailable intermittently Dec. 6-7 due to a system update. Thank you for your understanding!
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.
  • JMP 19 is here! Learn more about the new features.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
twillkickers
Level III

Only select rows where the first character of the contained string is a number, not a letter

How can I use JSL to only select rows that contain a string that begins with a number, while ignoring strings that begin with a letter?

1 ACCEPTED SOLUTION

Accepted Solutions
ms
Super User (Alumni) ms
Super User (Alumni)

Re: Only select rows where the first character of the contained string is a number, not a letter

There are several ways to do this. Here are two examples. 

 

dt << select where(!Is Missing(Num(Left(:data[], 1))));

dt << select where(!Is Missing(Regex(Left(:data[], 1), "^\d")));

View solution in original post

1 REPLY 1
ms
Super User (Alumni) ms
Super User (Alumni)

Re: Only select rows where the first character of the contained string is a number, not a letter

There are several ways to do this. Here are two examples. 

 

dt << select where(!Is Missing(Num(Left(:data[], 1))));

dt << select where(!Is Missing(Regex(Left(:data[], 1), "^\d")));

Recommended Articles