LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Search string array for string subset containing special characters

Solved!
Go to solution

Dear community,

 

I have a data application that runs 24/7 front of multiple test-rigs. For one test-rig I want to copy the test-script that is used to the folder where the related measurement data is stored for traceability. Due to a lack of other options in the test-rig software from external supplier I need to detect in a activity_log.txt file when the action (substring) "Run script: [Channel: System][Script: C:\Users\Public\.... .... ...." was done and then copy that file.


Transferred the txt file into an array of strings. I want to have the last time this string was starting with the mentioned substring in that array.

 

I tried via forum and NI suggestions:

* search 1D array, also with a '*' behind the substring it only searches for exact matches.

* Match First String, which functions exactly the wrong way around

* Match pattern in a for loop, which had the proper results for searching for "Run script:" but stopped working due to the special characters [ ] I guess when searching for "Run script: [Channel: System][Script: C:\Users\Public\"

 

It is probably something easy since I expect not to be the first with this but stuck on this for way to long now.

Any ideas are appreciated.
(LV24/64bit on Windows 10)

0 Kudos
Message 1 of 16
(325 Views)

Hi Carc,

 


@CarcS wrote:

Transferred the txt file into an array of strings. I want to have the last time this string was starting with the mentioned substring in that array.


  • Reverse the string array.
  • Autoindex the strings at a FOR loop.
  • Stop the loop when the first string containing your substring was found.
  • Use the loop index to calculate the index in the original (non-reversed) array.

Done.

Best regards,
GerdW


using LV2016/2019/2021 on Win10/11+cRIO, TestStand2016/2019
Message 2 of 16
(324 Views)

If using a non-indexing conditional tunnel, you don't even need to reverse.. 😄

 

altenbach_0-1743522190481.png

 

 

(...and yes, if there is no match, you'll get a zero and we just need to compare the first element with the search term to see if it is valid. Not shown) 

 

0 Kudos
Message 3 of 16
(268 Views)

@altenbach wrote:

If using a non-indexing conditional tunnel, you don't even need to reverse.. 😄

 

altenbach_0-1743522190481.png

 

 

(...and yes, if there is no match, you'll get a zero and we just need to compare the first element with the search term to see if it is valid. Not shown) 

 


Would it be more efficient to compare the entire array then search for the index where the first TRUE happens?  (Asked as a question, not a statement.)

billko_0-1743523643734.png

Edit: oops, last, not first.

billko_0-1743524080820.png

 

Bill
CLD
(Mid-Level minion.)
My support system ensures that I don't look totally incompetent.
Proud to say that I've progressed beyond knowing just enough to be dangerous. I now know enough to know that I have no clue about anything at all.
Humble author of the CLAD Nugget.
0 Kudos
Message 4 of 16
(265 Views)

@billko wrote:

Would it be more efficient to compare the entire array then search for the index where the first TRUE happens?  (Asked as a question, not a statement.)

 

Depending on the size of the problem, allocating a full size Boolean array adds to the cost and you also need to do N comparisons, even if the match is typically near the end (very few comparisons!).

 

However reversing the array first is most likely a NOOP, because the compiler will leave it untouched in-place and just mark it as reversed. Basically, it will just autoindex from the back, similar to the following explicit code that operates on the non-reversed array directly. (only detailed benchmarking will be able to tell if these optimizations are made, so I prefer this version).

 

 

altenbach_0-1743524185130.png

 

 

 

Message 5 of 16
(259 Views)

@billko wrote:

billko_0-1743524080820.png

 


This can still get problematic. If no match is found, you would get N.

0 Kudos
Message 6 of 16
(258 Views)

@altenbach wrote:

@billko wrote:

billko_0-1743524080820.png

 


This can still get problematic. If no match is found, you would get N.


True.  But like your algorithm, you would need an additional check to make sure that doesn't happen.  I was mainly asking because I didn't know whether looping through a FOR loop is better or worse than using the 1D array search.  And I forgot that Booleans aren't truly one bit; it actually takes 8 bits to represent each Boolean so thanks for reminding me about that.

Bill
CLD
(Mid-Level minion.)
My support system ensures that I don't look totally incompetent.
Proud to say that I've progressed beyond knowing just enough to be dangerous. I now know enough to know that I have no clue about anything at all.
Humble author of the CLAD Nugget.
0 Kudos
Message 7 of 16
(239 Views)

@billko wrote:
And I forgot that Booleans aren't truly one bit; it actually takes 8 bits to represent each Boolean so thanks for reminding me about that.

https://forums.ni.com/t5/BreakPoint/LabTOONS-The-secret-life-of-LabVIEW-objects/m-p/715739#M5539 


GCentral
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
"Not that we are sufficient in ourselves to claim anything as coming from us, but our sufficiency is from God" - 2 Corinthians 3:5
Message 8 of 16
(234 Views)

Thanks for this, this partially solved my problem and at least pushed my brain in the right direction for solving the complete thing. Only thing missing was cutting the strings from the input array to the length of the search term since the search term is just a subset of the strings in the array.
Thanks for thinking along!

0 Kudos
Message 9 of 16
(184 Views)
Solution
Accepted by topic author CarcS

Thanks all for spending time to think along. Looking at the suggestions I guess my issue was wrongly phrased. I am not able to search with any 'equal' function since the search input I want to detect in the activity log is only the subset of what I am trying to find there. The full string I want to detect is longer than the search term.

Using the code from @altenbach I just added using only a subset of the strings in the array that equal the length of the search term. In order to be able to compare them.

solution.PNG
Thanks for thinking along!👍

 

0 Kudos
Message 10 of 16
(175 Views)