Go to the first, previous, next, last section, table of contents.


]join

Function: ]join { [stgs] -> stg }
file: job.t
package: muf
status: alpha

The ]join operator merges a block of strings into a single string, or alternately a block of integers, or a block of characters, into a string:

Stack: 
[ "The" " eye" " of" " the" " tiger." | ]join
Stack: "The eye of the tiger."
pop [ 101 102 103 | ]join
Stack: "efg"

See section ]glueStrings. See section stringWords[. See section chopString[. See section stringChars[. See section vals[.


Go to the first, previous, next, last section, table of contents.