String Parsing

I would like to convert one string (ex. “1;2;3”) to multiple strings as a string array, so that I have a string array which is has the value str[1,2,3].
That means I’d like to separate the strings by semicolons (a semicolon signalizes that a new string is beginning).

Use String.Split, which returns a string array.