problem.tokencount
| problem.tokencount | 
  Purpose
 
 Count the number of tokens in a free-format character string
 
  Synopsis
 
token = problem.tokencount (record)
 
  Argument
 
| 
     record 
     | 
     The character string to be processed. This must be terminated with a null character.
     | 
  Return value
 
 The number of tokens (strings separated by one or more spaces) in
 record.
  Example
 
 The following example counts the number of tokens in the string "sin ( x + y )":
 
int nToken;
nToken = p.tokencount ("sin ( x + y )")
  Further information
 
 Record should follow the conventions for Extended MPS Format, with each token being separated by one or more spaces from the previous token.
 
 
