Hi All, I'm trying to manipulate strings in Velo like can be done in python. I have a string address whose elements are separated by commas. I want to extract and declare a sub string for the city that would be between the first and second commas as well as the zip that would be between the 3rd and 4th commas.
The original string is from the address input field that is used from Wix's input options.
Thanks!
Hi James, Velo is based on JavaScript, so any string manipulations you want to do would be in that language. The split() method is likely what you are looking for in this case: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/split Hope that helps!
Eitan