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!
Printable View
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!
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
Great!
Thanksfor the help!