‎11-21-2012 07:13 AM
I have a string in which all characters are seperated by a space.I want to extract each of these characters to different substrings.Is there a way to do this?
For example: parent string : 1 a g 3 h p
required =>
string 1: 1
string 2: a
string 3: g
string 4: 3
string 5: h
string 6: p
Thanks.
Solved! Go to Solution.
‎11-21-2012 07:20 AM
I would use Spreadsheet String to Array with a space set to the delimiter.
‎11-21-2012 07:25 AM
Exactly that:
@crossrulz wrote:
I would use Spreadsheet String to Array with a space set to the delimiter.
‎11-21-2012 07:31 AM
Thanks guys..:)