hello...
im working on a program and im using Mid(newuserarg, InStr(newuserarg, "*") + 1) method to separate incoming stream data from a source and then writing the string to a database, basically im trying to separate the following command in its individual parts
/register *username $password
my question is, is there a way to detect the length of each part, that is, the length of username and password, and writing them, or having a character which signifies STOP for Mid(newuserarg, InStr(newuserarg, "*") + 1) so that i can separate each part
again simplified, i want the above command to be disassembled by the code in 2 parts, username and password where i can write them to a database
any suggestions?
much appreciated....
Start Free Trial