arrstr.unite...
- method str arrstr.unite( str dest, str separ )
- method str arrstr.unite( str dest )
- method str arrstr.unitelines( str dest )
Unite strings of the array. The method unites all items of the array to a string with the specified separator string.
method str arrstr.unite (
str dest,
str separ
)
str dest,
str separ
)
Parameters
dest | The result string. |
separ | A separator of the strings. |
Return value
The result string.
arrstr.unite
The method unites all items of the array to a string.
method str arrstr.unite (
str dest
)
str dest
)
Parameters
dest | The result string. |
arrstr.unitelines
The method unites items of the array to a multi-line string. It inserts new-line characters between the each string of the array.
method str arrstr.unitelines (
str dest
)
str dest
)
Parameters
dest | The result string. |
Related links | Source |