cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Instantly extract effect sizes, F-ratios, and FDR-adjusted p-values from your models with the Calculate Effects Sizes extension, available now in the JMP Marketplace!
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.

Discussions

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

How do I use contains function to find a part of a variable name?

Hi, 

 

I'm trying to find a way to execute a function which happens when a list contains the string "[String]" like so:

 

AAList = {"object1", "object2", "object3[String]"};

 

If( Contains( AAList, "[String]"),
Show("string is running") );

 

But the if function isn't executed because the contains function doesn't detect the "[String]".

Any way to solve this? 

1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User

Re: How do I use contains function to find a part of a variable name?

Contains is looking for full matches from a list, that why it won't find the which is part of one of the items in the list [String]. You can convert the list to a string using Concat Items()

Names Default To Here(1);

AAList = {"object1", "object2", "object3[String]"};

If(Contains(Concat Items(AAList, "¤"), "[String]"),
	Show("string is running")
);

Or loop over the list and break when match is found.

 

-Jarmo

View solution in original post

1 REPLY 1
jthi
Super User

Re: How do I use contains function to find a part of a variable name?

Contains is looking for full matches from a list, that why it won't find the which is part of one of the items in the list [String]. You can convert the list to a string using Concat Items()

Names Default To Here(1);

AAList = {"object1", "object2", "object3[String]"};

If(Contains(Concat Items(AAList, "¤"), "[String]"),
	Show("string is running")
);

Or loop over the list and break when match is found.

 

-Jarmo

Recommended Articles