LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Error in Skipping text in Scan from String

Solved!
Go to solution

Hi guys,

I'm reviewing some of the topics that I have weak spots. Scan from String is one of them.

I have the following input:

she is a doctor. her name is Anna. Her Age: 25

I want to dynamically remove every text in the formatting except Anna and 25 (output). 

 

I used --  %*[^A]%[^H]Her Age: %d

 

But the error said - unknown format specifier

Can you please help me to correct it? I just want to skip everything dynamically keeping Anna and 25.

0 Kudos
Message 1 of 9
(261 Views)

I can't open your vi because it's too new but....

 

Scan From String only returns one data type (it's intended to scan numerics from a string and output a numeric data type) so you can't expect it to output Anna and 25 in one operation

========================
=== Engineer Ambiguously ===
========================
0 Kudos
Message 2 of 9
(241 Views)

Hi RTSLVU, 

 

Thanks for replying. 

I actually want to get the output in two separate output indicator. I am attaching the VI again for previous LV versions. 

Scan from String_Ex1.png

0 Kudos
Message 3 of 9
(219 Views)

Could you give us some more examples, or maybe elaborate on what you're trying to do? If you need to extract a name, how are you determining what the name is? Just anything after "name is "? And I assume for age, you want the word "Age: " then a number, is that right?

 

Also, in my experience Scan from String is great for well-formatted data, but not so much for "flexible" data. It works great for values formatted into strings using Format Into String, but if you're looking for something more flexible it's not great.

 

For that, I'd recommend using Match Regular Expression. For example, finding the phrase "name is" then grabbing whatever comes afterwards is clunky (if not impossible) for Scan from String, but is trivial with Match Regular Expression.

0 Kudos
Message 4 of 9
(199 Views)
Solution
Accepted by topic author Hk637

If you remove the asterisk, wire the top indicator, and just use everything else you already had, it gets pretty close:

 

Kyle97330_0-1743553174434.png

The asterisk was what was making it not work, since %* isn't a part of a valid format string.

 

If you do it without that, you get close ("Anna. " is the output, i.e. "Anna" plus a period and a space) but not exact.

 

However, the way you're doing it is still a bit weird.  I do agree with the other poster that either Match Pattern or Match Regular Expression is more likely to get a good result.

 

Have you tried using the "Edit scan string" right-click option?  It can make it a lot easier to see what you're doing:

Kyle97330_1-1743553534117.png

 

For instance, right now, you are scanning for:

1. All characters until right before a capital A

2. All characters until right before a capital H

3. The exact string "Her Age: " is skipped

4. All characters in a row that look like a decimal number

 

If you change to something like Match Pattern, you can get better results.  For instance, you could search for:

1. "name is", search to find this, discard it and anything before it.

2. "[A-Za-z]+", getting you the next set of letters, stopping at any space or punctuation

3. "Age:", searching for the exact string "Age:" and discarding it and anything else along the way

4. "[0-9]+", looking for any number of digits in a row, then stopping.  Or, skip that and just convert the remaining text after the "Age:" search to a decimal number.

 

 

Message 5 of 9
(189 Views)

Thanks a lot. removing asterisk actually works

 

However, I am also interested to learn the following:

If you change to something like Match Pattern, you can get better results.  For instance, you could search for:

1. "name is", search to find this, discard it and anything before it.

2. "[A-Za-z]+", getting you the next set of letters, stopping at any space or punctuation

3. "Age:", searching for the exact string "Age:" and discarding it and anything else along the way

4. "[0-9]+", looking for any number of digits in a row, then stopping.  Or, skip that and just convert the remaining text after the "Age:" search to a decimal number.

 

 

Would you please write just the formating here ? I still did not get it how these section works.

 

Thanks in advance. 

0 Kudos
Message 6 of 9
(155 Views)

@rajpaalsinha wrote:

Hi guys,

I'm reviewing some of the topics that I have weak spots. Scan from String is one of them.

I have the following input:

she is a doctor. her name is Anna. Her Age: 25

I want to dynamically remove every text in the formatting except Anna and 25 (output). I asked Deepseek and it is giving me following formatting

%[h]%s%[^.]%[0-9]%d

But the error said - unknown format spacifier

Can you please help me to correct it? I just want to skip everything dynamically keeping Anna and 25.


I'm guessing that by "remove every text", you mean 'remove every word'.

Also, you haven't specified how "Anna" is to be recognized.  Is it:

  • The explicit text "Anna"?
  • The first capitalized word?
  • The last capitalized word?
  • The 8th word?
  • Something else?
0 Kudos
Message 8 of 9
(145 Views)

@Hk637 wrote:

If you change to something like Match Pattern, you can get better results.  For instance, you could search for:

1. "name is", search to find this, discard it and anything before it.

2. "[A-Za-z]+", getting you the next set of letters, stopping at any space or punctuation

3. "Age:", searching for the exact string "Age:" and discarding it and anything else along the way

4. "[0-9]+", looking for any number of digits in a row, then stopping.  Or, skip that and just convert the remaining text after the "Age:" search to a decimal number.

 

Would you please write just the formating here ? I still did not get it how these section works.

 

Thanks in advance. 


Look here:

https://www.ni.com/docs/en-US/bundle/labview-api-ref/page/functions/match-pattern.html

 

There is a section there that lists the formatting.  It is similar to regular expressions, but leaves out some options in order to let it run faster.

 

For example, I listed that the search for the name would be "[A-Za-z]+".  The brackets mean "match any character in the brackets".  The hyphens between A and Z and a and z mean "any character between these or including these".  The plus at the end means "keep matching characters in a row until you reach one that doesn't match".  So the complete meaning is essentially to search for one word, not caring about capitalization, but not starting until letters start and ending on the last character that is a letter, whether the character after that is a number, space, or punctuation.

 

"Match Pattern" basically splits the string you pass in into three sections:

  • Before the match
  • The part that matches
  • After the match

By giving it patterns, you can find certain areas of text that meet broad patterns, then break them down as needed.  This is unlike Scan from String, which has much less flexibility when it comes to certain things.

Kyle97330_0-1743612199381.png

 

You can see above the implementation I described.

0 Kudos
Message 9 of 9
(90 Views)