Hello! Is there a way to split a string of text multiple times? The “split” node works for splitting in two, but sometimes I’d like to split the same string in more parts.
1 Like
You can break the string into words with
2 Likes
So if my string is: one,two,three
And the delimeter is: ,
I would get an array consisting of “one” “two” and “three”, right? If that’s the case, thank you so much!
1 Like
Correctemo
1 Like
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.