How to split/convert a string into a list/array ?
How can I convert/split a string into a list/array?
Example - "how are you"
now we will convert this string into a list/array like -
{"how", "are", "you"};
How can I do this?
Is there any built in functions for this?