Feb 14, 2002 #1 nabbs Programmer Feb 21, 2001 18 GB hi i am trying to split an email address into a string. Basically, what i wanna do is take the first part of the email just before the "@" symbol and insert it into the database. How can I do this using asp?? thanx in advance. nabbs
hi i am trying to split an email address into a string. Basically, what i wanna do is take the first part of the email just before the "@" symbol and insert it into the database. How can I do this using asp?? thanx in advance. nabbs
Feb 14, 2002 #2 Discord Programmer Dec 7, 2001 133 US string = "frank@hotmail.com" MyArray = Split(frank, "@" results: MyArray(0) = "frank" MyArray(1) = "hotmail.com" Upvote 0 Downvote
string = "frank@hotmail.com" MyArray = Split(frank, "@" results: MyArray(0) = "frank" MyArray(1) = "hotmail.com"
Feb 14, 2002 Thread starter #3 nabbs Programmer Feb 21, 2001 18 GB EXCELLENT!!! Thanx so much....it works!! nabbs Upvote 0 Downvote