diff options
author | ferrieux <ferrieux@users.sourceforge.net> | 2014-08-02 13:04:16 (GMT) |
---|---|---|
committer | ferrieux <ferrieux@users.sourceforge.net> | 2014-08-02 13:04:16 (GMT) |
commit | 199f805233d9af1ccfd843748bffd339b275bbab (patch) | |
tree | 49eec2c0a52f05ac8d8fe1930266724473d74651 /doc/string.n | |
parent | 6f329a1932ac170449caed077ca7f5596709433c (diff) | |
download | tcl-199f805233d9af1ccfd843748bffd339b275bbab.zip tcl-199f805233d9af1ccfd843748bffd339b275bbab.tar.gz tcl-199f805233d9af1ccfd843748bffd339b275bbab.tar.bz2 |
TIP 429 Implementation: [string cat]
Diffstat (limited to 'doc/string.n')
-rw-r--r-- | doc/string.n | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/string.n b/doc/string.n index 72a69ff..9108e7c 100644 --- a/doc/string.n +++ b/doc/string.n @@ -19,6 +19,14 @@ string \- Manipulate strings Performs one of several string operations, depending on \fIoption\fR. The legal \fIoption\fRs (which may be abbreviated) are: .TP +\fBstring cat\fR ?\fIstring1\fR? ?\fIstring2...\fR? +. +Concatenate the given strings just like direct juxtaposition +would. This primitive is occasionally handier than juxtaposition when +mixed quoting is wanted, or when the aim is to return the result of a +concatenation without resorting to \fB[return -level 0]\fR. If no arg +is present, an empty string is returned. +.TP \fBstring compare\fR ?\fB\-nocase\fR? ?\fB\-length\fI length\fR? \fIstring1 string2\fR . Perform a character-by-character comparison of strings \fIstring1\fR |