
I have a collection of strings, it stores string values.
how do i compare if a values exists in the collections.
is there an index of collections we can compare with?
I am storing a string split with space. now i need to check if each of the strings has some value.
Hi , @KDAI
For example , if i check if each of the strings has "2024". You can refer to this code:
ClearCollect(collvarsplityted ,AddColumns( Split(TextInput1.Text, " ") ,"Flag" , IsMatch(Value,"2024",MatchOptions.Contains) ) );
The result is as follows:
If this reply can help you , you can click mark this reply as solution (Accept solution) which can help more people, thanks in advance!
Best Regards,
Yueyun Zhang