summaryrefslogtreecommitdiffstats
path: root/doc/string.n
diff options
context:
space:
mode:
authorhobbs <hobbs>1999-12-21 23:57:33 (GMT)
committerhobbs <hobbs>1999-12-21 23:57:33 (GMT)
commitad4a42c1c2da6828324db8589acddcca79616e8c (patch)
tree0be6faa1991f803049ddca969f3daf42f07f65c6 /doc/string.n
parenta7f2bf5da71129730441d5bc4c7b79b4aaa45f0b (diff)
downloadtcl-ad4a42c1c2da6828324db8589acddcca79616e8c.zip
tcl-ad4a42c1c2da6828324db8589acddcca79616e8c.tar.gz
tcl-ad4a42c1c2da6828324db8589acddcca79616e8c.tar.bz2
* doc/Hash.3: fixed reference to ckfree [Bug: 3912]
* doc/RegExp.3: fixed calling params for Tcl_RegExecFromObj * doc/open.n: fixed minor formatting errors * doc/string.n: fixed minor formatting errors * doc/lsort.n: added -unique docs
Diffstat (limited to 'doc/string.n')
-rw-r--r--doc/string.n8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/string.n b/doc/string.n
index f06c3b6..afa59d3 100644
--- a/doc/string.n
+++ b/doc/string.n
@@ -5,7 +5,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: string.n,v 1.12 1999/08/09 16:30:35 hobbs Exp $
+'\" RCS: @(#) $Id: string.n,v 1.13 1999/12/21 23:57:34 hobbs Exp $
'\"
.so man.macros
.TH string n 8.1 Tcl "Tcl Built-In Commands"
@@ -32,7 +32,7 @@ the byte length are rare. In almost all cases, you should use the
\fBstring length\fR operation. Refer to the \fBTcl_NumUtfChars\fR
manual entry for more details on the UTF\-8 representation.
.TP
-\fBstring compare ?\fB\-nocase\fR? ?\fB\-length int\fR? \fIstring1 string2\fR
+\fBstring compare\fR ?\fB\-nocase\fR? ?\fB\-length int\fR? \fIstring1 string2\fR
.VE 8.1
Perform a character-by-character comparison of strings \fIstring1\fR and
\fIstring2\fR. Returns
@@ -44,7 +44,7 @@ are used in the comparison. If \fB\-length\fR is negative, it is
ignored. If \fB\-nocase\fR is specified, then the strings are
compared in a case-insensitive manner.
.TP
-\fBstring equal ?\fB\-nocase\fR? ?\fB-length int\fR? \fIstring1 string2\fR
+\fBstring equal\fR ?\fB\-nocase\fR? ?\fB-length int\fR? \fIstring1 string2\fR
Perform a character-by-character comparison of strings
\fIstring1\fR and \fIstring2\fR. Returns 1 if \fIstring1\fR and
\fIstring2\fR are identical, or 0 when not. If \fB\-length\fR is
@@ -203,7 +203,7 @@ affect for later key matches. For example,
will return the string \fB01321221\fR.
.RE
.TP
-\fBstring match ?\fB\-nocase\fR? \fIpattern\fR \fIstring\fR
+\fBstring match\fR ?\fB\-nocase\fR? \fIpattern\fR \fIstring\fR
.VE 8.1
See if \fIpattern\fR matches \fIstring\fR; return 1 if it does, 0
if it doesn't.