timeshift117
timeshift117

Reputation: 1800

Convert string of strings to string array in LabVIEW

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

Answers (2)

Abdul Rehman
Abdul Rehman

Reputation: 2346

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.

Upvotes: 0

Ryan Duell
Ryan Duell

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

Related Questions