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


]words

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

The ]words operator takes a block of words and joins them into a string. The difference between this and what ]join does is that ]words inserts blanks between the words:

Stack: 
[ "My" "little" "chickadee" | ]words
Stack: "My little chickadee"
pop [ "My" "little" "chickadee" | ]join
Stack: "Mylittlechickadee"

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


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