Tokenize a string: Difference between revisions

Content deleted Content added
Line 1,996: Line 1,996:
// create string by joining array of strings with .
// create string by joining array of strings with .
string joined = string.joinv(".", words);</lang>
string joined = string.joinv(".", words);</lang>

=={{header|VBScript}}==
<lang vb>
s = "Hello,How,Are,You,Today"
WScript.StdOut.Write Join(Split(s,","),".")
</lang>
{{Out}}
<pre>Hello.How.Are.You.Today</pre>


=={{header|Vedit macro language}}==
=={{header|Vedit macro language}}==