Using the Split( ) function

Hi,

I would like to get the first word from a text string containing multiple words.

For example if my text string was “Bean Addict”, I’m trying to just extract “Bean”.

I have tried using the split function with the separator as a white space, but that doesn’t seem to work. Has anyone run into this issue/have any idea how to solve it?

Thanks

Hi @Alex_Williams , simply use a text parser, instead of using split function, it does same thing

1 Like