Explosion and implosion of strings.
| Function or value | Description | 
| 
                
              
                  Full Usage: 
                   explode sParameters: 
 string- 
                      The input string.Returns: string listThe 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 lParameters: 
 string list- 
                      The input string list.Returns: stringThe 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"". | 
| 
                
               |