Hello!! Thanks by the video! I want to separate some strings, but use just one string. For example, i want to transform brasil_saopaulo in brasil saopaulo. How can I do that? Replace?
Hi there! I want to split Names into FName and LName fields. Users tend to type fullname in a First Name Field, I want to split it in order to send it to my CRM in the right fields when mapping. How Can I do it? Thank you so much!
you can use split() and get() or first() or last() Say: first(split(John Snow;space)) = John last(split(John Snow;space)) = Snow OR get(split(John Snow;space),1) = John get(split(John Snow;space),2) = Snow
Hello!! Thanks by the video!
I want to separate some strings, but use just one string. For example, i want to transform brasil_saopaulo in brasil saopaulo. How can I do that? Replace?
replace({{TEXT}};_;{{space}}) add this to your field and replace {{TEXT}} with your variable
@@BeyondAutomationWithAlex tks!! i will try and i come here when it's right
Hi there! I want to split Names into FName and LName fields. Users tend to type fullname in a First Name Field, I want to split it in order to send it to my CRM in the right fields when mapping. How Can I do it? Thank you so much!
you can use split() and get() or first() or last()
Say:
first(split(John Snow;space)) = John
last(split(John Snow;space)) = Snow
OR
get(split(John Snow;space),1) = John
get(split(John Snow;space),2) = Snow
@@BeyondAutomationWithAlex thank you so much for this!!!
The best part about split text is how it takes you 12 fuckimg hours to figure out how to do anything with it after that
hope my video helps with it