home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 488.lha / TCL_alpha2 / 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.