Can I convert a string to an array of strings?

I have the followiing text “Firstname lastname” y want a result of an array of type string like in csharp

string str = text.Split(’ ')

ok I found it, closing this thread hehe

text.ToString().Split(expression here)

2 Likes