cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • See how to design an experiment, explore factor-response relationships, assess tradeoffs, and ID best settings. Register for Sep. 11 Mastering JMP.

Discussions

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

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