How to Split String into Each Character as a String Array:
String = “How are you”
The Converted Array should be {“H”, “o”, “w”, Etc…}
How to Split String into Each Character as a String Array:
String = “How are you”
The Converted Array should be {“H”, “o”, “w”, Etc…}

YourStringVar.select(Function (x) x.toString).ToArray()
HI @Taha_Sabri1
Try this expression
"How are you".ToList
String.join(",","How are you".ToList)

Regards
Sudharsan
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.