How can I split a string using vbscript?
Dim personal_number
Dim personal_prefix
person_prefix = Split(personal_number, 4)
I want to split person_prefix and grab the first four characters. Is this the correct approach because it seems to return the entire string on document.write.