home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 2 / fishmore-publicdomainlibraryvol.ii1991xetec.iso / dirs / tcl_447.lzh / TCL / tcl.lzh / tcl / help / range < prev    next >
Text File  |  1990-05-03  |  1KB  |  22 lines

  1.  range value first last [chars]
  2.       Return a range of fields or characters from value.  If
  3.       the chars keyword isn't specified, then value must be a
  4.       list and range will return a new list consisting of
  5.       elements first through last, inclusive. The special
  6.       keyword end may be specified for last; in this case all
  7.       the elements of value starting at first are returned.
  8.       If the chars keyword, or any abbreviation of it, is
  9.       specified, then range treats value as a character
  10.       string and returns characters first through last of it,
  11.       inclusive.  Once again, the end keyword may be used for
  12.       last.  In both cases if a last value is specified
  13.       greater than the size of value it is equivalent to
  14.       specifying end; if last is less than first then an
  15.       empty string is returned.  Note: ``range value first
  16.       first'' does not always produce the same results as
  17.       ``index value first'' (although it often does for
  18.       simple fields that aren't enclosed in braces);  it
  19.       does, however, produce exactly the same results as
  20.       ``list [index value first]''
  21.  
  22.