I have these fromat of strings.
‘IBC,2018’
‘IBC,2019’
I want to get the words separated by the comma sign. I want to get IBC and 2018 separately. Is there an easy way to do this in Coda?
I have these fromat of strings.
‘IBC,2018’
‘IBC,2019’
I want to get the words separated by the comma sign. I want to get IBC and 2018 separately. Is there an easy way to do this in Coda?
Hi again @Alyssa_Gono
You can Use Split()
function
If you have more than 2 value, you can acess anyvalue you want with yourText.Split(",").Nth(N)
Quentin
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.