11-08-2018 11:46 AM
How do I go through a string to search for a value (Format: Variable = value\tVariable2 = value2), Without converting to array.
Solved! Go to Solution.
11-08-2018 11:49 AM
11-08-2018 12:15 PM
I need to limit the search to \ t (tab), how do I?
11-08-2018 01:05 PM
You could also use Match Regular Expression
11-08-2018 01:06 PM
Hi Rafael,
I need to limit the search to \ t (tab),
Why? (According to your other thread you should search the whole string…)
To answer your question:
1. Search for tab and keep the substring before the tab
2. Search your "variable" in the substring and get the value after the following "=".
11-09-2018 04:24 AM
Excellent, could you give me a website to better understand Match Regular Expression?
11-09-2018 04:26 AM
I need two types of search, one going through the arrays and another the string, so I'll have two options if necessary.
11-09-2018 05:13 AM
@rafael.assis16 wrote:
Excellent, could you give me a website to better understand Match Regular Expression?
Just use the Help built into LabVIEW. You can access the proper page via the Context Help or right-click on a Match Regular Expression and choose "Help".
11-09-2018 07:24 AM
@rafael.assis16 wrote:
Excellent, could you give me a website to better understand Match Regular Expression?
11-09-2018 07:35 AM
Tks.