summaryrefslogtreecommitdiffstats
path: root/doc/string.n
Commit message (Collapse)AuthorAgeFilesLines
* * doc/DoubleObj.3: More doc updates for TIP 237.dgp2006-04-261-4/+4
| | | | | | | | * doc/expr.n: * doc/format.n: * doc/mathfunc.n: * doc/scan.n: * doc/string.n:
* * doc/expr.n:das2005-05-231-7/+7
| | | | * doc/string.n: fixed roff syntax complaints from 'make html'.
* Merged kennykb-numerics-branch back to the head; TIPs 132 and 232Kevin B Kenny2005-05-101-1/+1
|
* TIP#176 IMPLEMENTATION [Patch 1165695]dgp2005-04-291-6/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tclUtil.c: Extended TclGetIntForIndex to recognize index formats including end+integer and integer+/-integer. * generic/tclCmdMZ.c: Extended the -start switch of [regexp] and [regsub] to accept all index formats known by TclGetIntForIndex. * doc/lindex.n: Updated docs to note new index formats. * doc/linsert.n: * doc/lrange.n: * doc/lreplace.n: * doc/lsearch.n: * doc/lset.n: * doc/lsort.n: * doc/regexp.n: * doc/regsub.n: * doc/string.n: * tests/cmdIL.test: Updated tests. * tests/compile.test: * tests/lindex.test: * tests/linsert.test: * tests/lrange.test: * tests/lreplace.test: * tests/lsearch.test: * tests/lset.test: * tests/regexp.test: * tests/regexpComp.test: * tests/string.test: * tests/stringComp.test: * tests/util.test:
* Minor typo fix. [Bug 1158247]dkf2005-03-071-2/+2
|
* Reduce confusion (reported in c.l.t) over [string trim]'s chars argumentdkf2005-01-131-4/+8
|
* More minor doc fixesdkf2004-10-271-4/+4
|
* Many minor doc fixesdkf2004-10-271-3/+3
|
* Clarify [string map] docs to remove char/string ambiguity. [Bug 1048005]dkf2004-10-251-4/+4
|
* Added clarifying note on [string map]'s behaviour.dkf2004-08-241-1/+9
|
* TIP#188 implementation. Thanks to KBK! [Patch 940915]dkf2004-06-301-20/+26
|
* Added example.dkf2004-05-271-1/+12
|
* * generic/tclCmdMZ.c (Tcl_StringObjCmd,STR_IS_INT): Correcteddgp2003-04-111-2/+2
| | | | | | | | inconsistent results of [string is integer] observed on systems where sizeof(long) != sizeof(int). [Bug 718878] * tests/string.test: Added tests for Bug 718878. * doc/string.n: Clarified that [string is integer] accepts 32-bit integers.
* minor doc fixcore_8_4_b1hobbs2002-07-051-3/+3
|
* Minor improvement to documentation for [string last], and reformatting todkf2002-06-281-151/+117
| | | | remove long-obsolete changebars.
* clarified getting length of ByteArray objects to use string lengthhobbs2002-04-171-3/+7
|
* New or changed "SEE ALSO" section.poenitz2000-09-071-1/+4
|
* * doc/Hash.3: fixed reference to ckfree [Bug: 3912]hobbs1999-12-211-4/+4
| | | | | | | | * 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
* 1999-08-09 Jeff Hobbs <hobbs@scriptics.com>hobbs1999-08-091-6/+7
| | | | | | | | | * doc/Object.3: clarified Tcl_DecrRefCount docs [Bug: 1952] * doc/array.n: clarified array pattern docs [Bug: 1330] * doc/clock.n: fixed clock docs [Bug: 693] * doc/lindex.n: clarified to account for new end-int behavior. * doc/string.n: fixed formatting errors [Bug: 2188 2189] * doc/tclvars.n: fixed doc error [Bug: 2042]
* * unix/Makefile.in: Changed install-doc to install-man.stanton1999-06-241-3/+4
| | | | | | | | | | | | | * tools/uniParse.tcl: * tools/uniClass.tcl: * tools/README: * tests/string.test: * generic/regc_locale.c: * generic/tclUniData.c: * generic/tclUtf.c: * doc/string.n: Updated Unicode character tables to reflect latest Unicode 2.1 data. Also rationalized "regexp" and "string is" definitions of character classes.
* Merged changes from scriptics-tclpro-1-3-b2 branchstanton1999-05-221-51/+108
|
* * tests/string.test:stanton1999-05-061-16/+17
| | | | | | * generic/tclCmdMZ.c: * doc/string.n: Fixed bug in string equal/compare code when using -length option. Cleaned up docs a bit more.
* more documentation lintstanton1999-05-061-5/+3
|
* * doc/string.n:stanton1999-05-061-24/+60
| | | | | | | | | | | | | | | | | | | | * tests/cmdIL.test: * tests/cmdMZ.test: * tests/error.test: * tests/ioCmd.test: * tests/lindex.test: * tests/linsert.test: * tests/lrange.test: * tests/lreplace.test: * tests/string.test: * tests/cmdIL.test: * generic/tclUtil.c: * generic/tclCmdMZ.c: Replaced "string icompare/iequal" with -nocase and -length switches to "string compare/equal". Added a -nocase option to "string map". Changed index syntax to allow integer or end?-integer? instead of a full expression. This is much simpler with safeTcl scripts since it avoids double substitution issues.
* lint and better documentation of the character vs. byte oriented commandsstanton1999-05-051-5/+13
|
* * doc/string.n:stanton1999-05-041-4/+8
| | | | | | | * tests/cmdMZ.test: * tests/string.test: * generic/tclCmdMZ.c (Tcl_StringObjCmd): Changed "string length" to avoid regenerating the string rep of a ByteArray object.
* * tests/cmdIL.test:stanton1999-05-041-23/+112
| | | | | | | | | | | | | * tests/cmdMZ.test: * tests/error.test: * tests/lindex.test: * tests/linsert.test: * tests/lrange.test: * tests/lreplace.test: * tests/string.test: * generic/tclCmdMZ.c (Tcl_StringObjCmd): * generic/tclUtil.c (TclGetIntForIndex): Applied Jeff Hobbs's string patch which includes the following changes [Bug: 1845]:
* merged tcl 8.1 branch back into the main trunkstanton1999-04-161-14/+26
|
* Replaced SCCS strings, fixed binary filescore_8_0_3stanton1998-09-141-1/+1
|
* Initial revisionrjohnson1998-03-261-0/+131