Hi,
I've got a string field - in the format FirstnameLastname - and i'm looking to split these out, effectively for every upper case, add a space before hand. The field at the moment can contain just one name or multiple - for example FirstnameMiddlenameLastname - and again, we'd want to add a space for every upper case character.
Brand new to Alteryx - so apologies if the solution is simple - any ideas?
Thanks,
Dom
Solved! Go to Solution.
In a formula tool, try something like this
trim(REGEX_Replace([Field1],"(\u)"," $1",0))
where [Field1] is your string field.
Worked a treat! Thank you very much for the help
@patrick_digan You're too good
How would you add a comma to this formula?
trim(REGEX_Replace([Field1],"(\u)"," $1",0))
To create Last Name, First name
I also have instances of 2 Last names: Last Name Last Name, First Name.
Thanks so much for the help!!
This is great, what I don't want a space between to capital letters? For Example I want AddressUSA to turn into Address USA not Address U S A