11-30-2009 09:01 AM
Can someone tell me the operational difference between %s and %[A-Za-z]?? I have an instance where the first field in line of data is a capital letter. The %s identifier caused an error from the Scan form string vi. My vi is working but it would be helpful to know why one worked and the other did not. Thanks in advance.
ssmith(Scott)
Solved! Go to Solution.
11-30-2009 09:06 AM
Well, the direct answer to your question is in the Help file:
11-30-2009 01:48 PM
Thanks for the help. The difference is that the %s scans up to white space, My input is comma delimited without any white space. The %s scan, scanned until the first CR, which was 7 fields of data. Thanks again for the help.
ssmith