home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / ui_utils / tcl_447.lzh / TCL / TCL.LZH / tcl / help / scan < prev    next >
Encoding:
Text File  |  1990-05-04  |  716 b   |  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.