PDA

Click to See Complete Forum and Search --> : Basic ? about text box in ASP


dndstef
Jun 6th, 2000, 02:29 AM
How can i take the content of an html textbox an split
it into on a specific caracter like @

I mean if i have sentence@anotherthing .

How can i display
-sentence
-anotherthing

Thanks a lot!

dvst8
Jun 6th, 2000, 02:44 AM
just write a function that will loop through the string until it finds the specific character "@" and then use the Mid() function.

i found a good VBScript reference at http://www.dev-guru.com
look it up.

i'll let you write this one, if you have trouble, i'll help you out ;)

dvst8

dndstef
Jun 9th, 2000, 12:37 AM
Great!

Thanksfor the help!