I have a problem, my source of information only has the full name, what is the best way to capture only the first name and to capture the rest of the name (surname).
For example:
current name variable: Caio Augusto de Oliveira Francoso
To extract firstname it would be pretty easy as you can use space as delimiter and take first item from the array.
With rest it might be a mor tricky as I suspect alnumber of last names can be different for different users. If you are able to defina what is expected maximal number of lastnames you can try First Valid eg. 5 times to check all possible lastnames.