This is an old revision of the document!
~~DISCUSSION~~ <- CRPL reference <- String Commands
Arguments | Result | Notation |
---|---|---|
Two strings | A string that is the concatenated version of the two input strings. | s1 s2 – s3 |
Takes two strings from the stack and concatenates them. The result is pushed back to the stack.
# Merges "abc" and "xyz" into a single new string "abcxyz" "abc" "xyz" concat trace