How to make ListFind () treat a semicolon string in it as a complete single string

I am having a problem using listfind() .

I have a list of strings. One of my line has a comma.

Now, when I use listfind() to compare with another string, I do not get the expected result. ie No semicolon was found in it.

How can listfind() work even for a semicolon string in it?

+4
source share
1 answer

The default separator for all CF functions is a comma. To use comma strings, you must change the delimiter.

For instance:

 ListAppend(list, "A value, with comma", "^") ListFind(list, "A value, with comma", "^") 
+9
source

Source: https://habr.com/ru/post/1309321/


All Articles