Get Values From String With Delimiter Google Script

[Solved] Get Values From String With Delimiter Google Script | Excel - Code Explorer | yomemimo.com
Question : get values from string with delimiter google script

Answered by : huldar

var myString = "What,a,string"
var myStringArray = myString.split(",")
var a = myStringArray[1]

Source : | Last Update : Sat, 28 Aug 21

Answers related to get values from string with delimiter google script

Code Explorer Popular Question For Excel