From Friday, April 19th (11:00 PM CDT) through Saturday, April 20th (2:00 PM CDT), 2024, ni.com will undergo system upgrades that may result in temporary service interruption.

We appreciate your patience as we improve our online experience.

LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

string to array

Solved!
Go to solution

The input string is abc = 4,def = 5. I would like to have string array of output with elements abc and def. Deleting the number including the equal to sign.. For this I used spread sheet string to array and the format used %[^=d*]. Any suggestions?

0 Kudos
Message 1 of 3
(2,308 Views)
Solution
Accepted by topic author nik35324

Hi nik35324,

 

You are so close to the result.

 

Just remove 'd' from the format string %[^=d*] and use %[^=*]

 

This will solve your problem. 

157+ CLDs & 9 CLA Trained
LabVIEW Training resources
Message 2 of 3
(2,291 Views)

Got it. Used the format from Matlab and I completely forgot that this is LabVIEW  Smiley Happy

0 Kudos
Message 3 of 3
(2,283 Views)