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

  1.  scan string format varname1 varname2 ...
  2.       This command parses fields from an input string in the
  3.       same fashion as the C sscanf procedure. String gives
  4.       the input to be parsed and format indicates how to
  5.       parse it, using % fields as in sscanf.  All of the
  6.       sscanf options are valid; see the sscanf man page for
  7.       details.  Each varname gives the name of a variable;
  8.       when a field is scanned from string, the result is
  9.       converted back into a string and assigned to the
  10.       corresponding varname.  The only unusual conversion is
  11.       for %c; in this case, the character value is converted
  12.       to a decimal string, which is then assigned to the
  13.       corresponding varname.
  14.  
  15.