天天看點

PlantSimulation字元串分割

splitString(Text:string, Delimiter:string) → string[]
eg1.
print splitString("one,two;three;four,five", ",;") -- returns [one, two, three, four, five] in the Console
eg2.
print splitString("a,b,c,d") → ["a","b","c","d"]
eg3.
var CFormat:string[]:=splitstring(SourseBoxData[0,i],"-")
           
PlantSimulation字元串分割
PlantSimulation字元串分割