type: General Function
expression: Split(string1, string2, index)
example usage:
MyString1 = "hi;hello;hey"
MyString2 = Split(MyString1, ";", 0) - (Would return "hi")
MyString2 = Split(MyString1, ";", 1) - (Would return "hello")
MyString2 = Split(MyString1, ";", 2) - (Would return "hey")
what it does:
string1 is the string to split
string2 is the string/character to split string1 by
index is the index of the split to return
another example:
Str1 = "mr,mrs,miss"
Str2 = Split(Str1, ",", 1) - would return "mrs"
Hope this is understandable!
Thank-you!