Hi, I am using split function to parse a large file and the delimiter I want to use is "March". Wowever when I run the following script, only the word "M" is used as a delimiter. How can I use the full word "March" instead?
var lines : String[] = html.Split("March"[0]);