StringJoin - method of the Pm object
Description:
Returns a string created by merging the substrings contained in 1-dimensional array.
Syntax:
String StringJoin(Array aStrings, String sDelimiter)
Parameters:
aStrings | (Array) 1-dimensional array containing substrings to be merged. The values of different data types are converted into the string. |
sDelimiter | (String) Separator, i.e. character used to identify substring boundaries in the resulting string.
Examples of separators:
"" = empty string - i.e. substrings will not be separated
" " = space
"," = comma
";" = semicolon |
---|
Example:
There is a list of values separated by comma , in the s1 string. The list is desintegrated into a 1-dimensional array and then integrated back together, but this time with ; semicolon acting as value separator.
JavaScriptVBScriptSelect and copy to clipboard
var s1 = "2,4,6,8,10";
var a = Pm.StringSplit(s1, " ");
var s2 = Pm.StringJoin(a, ";");
// s2 contains "2;4;6;8;10"
Dim s1, a, s2
s1 = "2,4,6,8,10"
a = Pm.StringSplit(s1, " ")
s2 = Pm.StringJoin(a, ";")
' s2 contains "2;4;6;8;10"