Reputation: 1800
Is there a way to convert a string of strings to a string array in LabVIEW.
eg. "test hello yeh ok"
becomes
[0] = test
[1] = hello
[2] = yeh
[3] = ok
Upvotes: 0
Views: 7177
Reputation: 2346
I have used Array builder and also append to the already array with constant strings. and to view and locate to specific index I used the Array Index block.
Upvotes: 0
Reputation: 182
I'm working from memory here, so bear with me. Use the Convert from Spreadsheet String VI in the Strings palette. Set your delimiter as a space.
Upvotes: 3