Paul-
Thank you for contacting National Instruments. I don't have an example program, but I did find some information for you.
LIKE - similar to.
Using the LIKE command, you can use the wildcard symbol %. To find names starting with J : names LIKE 'J%'; Ending in s ? name LIKE '%S'; You can use more than one % charactor too : names LIKE '%sam%'; Also, LIKE is not case sensitive.
What you have written, may work if you change the wildcard syntax from * to %.
-Erik