Explosion and implosion of strings.
Function or value | Description |
Full Usage:
explode s
Parameters:
string
-
The input string.
Returns: string list
The string exploded in it single-character strings.
|
Example
Evaluates to ["T"; "h"; "e"; " "; "Q"; "u"; "i"; "c"; "k"; " "; "f"; "o"; "x"; "."] .
Example
Evaluates to [] .
|
Full Usage:
implode l
Parameters:
string list
-
The input string list.
Returns: string
The concatenation of input strings.
|
Never fails and accepts empty or multi-character component strings.
Example
Evaluates to "example" .
Example
Evaluates to "example" .
Example
Evaluates to "" .
|
|