Split string * as separator

Hi,

input: abcd * efghi * jkl

output:
abcd
efghi
jkl

thank you.

Try this:
“abcd * efghi * jkl”.Split(“*”.ToCharArray())

It returns String arrays.

hi @Venkatesh_Chowdary,

Here is the solutions that i have attached it here.

File Split.zip (1.8 KB)

Regards
Balamurugan

Hi @Venkatesh_Chowdary,

Take a look at “Split String Activity”

Bests, :mage:
Pablo