Tokenize a stringTag(s): WSH VBScript
[tokenize.vbs]
Dim tokens
tokens = Split("This is the string to be tokenized", " ")
For i=0 To UBound(tokens)
WScript.Echo tokens(i)
Next
WScript.Quit(0)
mail_outline
Send comment, question or suggestion to howto@rgagnon.com
Send comment, question or suggestion to howto@rgagnon.com