0

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
timeshift117
  • 1,720
  • 2
  • 18
  • 21

2 Answers2

3

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.

Ryan Duell
  • 182
  • 6
0

I have used Array Builder and later on Used Array Indexing Property to select and view the Item in a given Array

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.

Abdul Rehman
  • 2,224
  • 25
  • 30