Share this page 

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)