Package java.io
Class StreamTokenizer

Public Method ordinaryChars

void ordinaryChars(int low, int hi)

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Specifies that all characters c in the range low ≤ c ≤ high are 'ordinary' in this tokenizer.

Example

   File file = new File("testFile");
   InputStream is = new FileInputStream(file);
   StreamTokenizer st = new StreamTokenizer(is);
   ...
   st.ordinaryChars('a','b');

The character which are specified by the ordinaryChars method are treated as token.