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


]glueStrings

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

The ]glueStrings operator merges a block of strings into a single string, separating the substrings by the given delimiter:

Stack:
"ag::995:30:Alexander the Geek:/q/ag:msh" ":" chopString[
Stack: [ "ag" "" "995" "30" "Alexander the Geek" "/q/ag" "msh" |
"" |delete
Stack: [ "ag" "995" "30" "Alexander the Geek" "/q/ag" "msh" |
":" ]glueStrings
Stack: "ag:995:30:Alexander the Geek:/q/ag:msh" 

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


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