My Other Blog is a Chevy
These two expressions do the same thing
s = "this.is.a.string.with.period.delimiters"
Expression 1
wscript.echo Join(Split(s,"."),vbCRLF)
Expression 2
For each word in Split(s, ".") wscript.echo word Next
Post a Comment
No comments:
Post a Comment