InsaneProgrammer
Programmer
I need help seperating a large string and placing it in 3 variables. The varibles are sClassID, sClassName, and sDate.
The string is in the following format:
sClassID & "--" & sClassName & "-----" & sDate
On the screen it looks like this:
12 Cost Management 1/19/02
How can I seperate it so that I can get:
sClassID = "12"
sClassName = "Cost Management"
sDate = "1/19/02"
Any help would be appreciated.
The string is in the following format:
sClassID & "--" & sClassName & "-----" & sDate
On the screen it looks like this:
12 Cost Management 1/19/02
How can I seperate it so that I can get:
sClassID = "12"
sClassName = "Cost Management"
sDate = "1/19/02"
Any help would be appreciated.