F
Freddy Coal
Hi, I would like split string with more than one separator, and assign the
result as array.
For example:
"car123house123truck123"
I need split my string in a array of 3 components
car
house
truck
How make that?
I try the split function (<chain.split("123")>), but I get
car
23house
23truck
Thanks in advance for any help.
Freddy Coal
result as array.
For example:
"car123house123truck123"
I need split my string in a array of 3 components
car
house
truck
How make that?
I try the split function (<chain.split("123")>), but I get
car
23house
23truck
Thanks in advance for any help.
Freddy Coal