get values from string with delimiter google script

Solutions on MaxInterview for get values from string with delimiter google script by the best coders in the world

showing results for - "get values from string with delimiter google script"
Francesco
13 Nov 2018
1var myString = "What,a,string"
2var myStringArray = myString.split(",")
3
4var a = myStringArray[1]
similar questions