01-19-2009 12:06 PM
Solved! Go to Solution.
01-19-2009 12:11 PM
Hi Fred420,
you can use the simple compare function to compare two strings. If you have a list of strings, then you can store them in an array and use the Search 1D Array function. Two find a part of a string in another string, you can use the search and replace function.
Hope it helps.
Mike
01-19-2009 12:50 PM
Hey Mike, thanks for the help. I had already looked at the search 1d array function, but doesn't that only return 1 part of the index? Or will this return all of the matched index?
Thanks, Fred
01-19-2009 01:44 PM
Hi Fred420,
it will only show the first found index. If you need more, then use a while loop til the result is -1. Store the last found index in a shiftregister, add one and conact it to the index input.
Mike