StreamTokenizer quoteChar(int) in Java

quoteChar(int): This method is available in the java.io.StreamTokenizer class of Java.

Syntax:

void java.io.StreamTokenizer.quoteChar(int ch)

This method takes one argument. This method specifies that matching pairs of this character delimit string constants in this tokenizer.

When the nextToken method encounters a string constant, the ttype field is set to the string delimiter and the sval field is set to the body of the string.

If a string quote character is encountered, then a string is recognized, consisting of all characters after (but not including) the string quote character, up to (but not including) the next occurrence of that same string quote character, or a line terminator, or end of the file.

Parameters: One parameter is required for this method.

ch: the character.

Returns: NA

Exceptions: NA

Approach

Java

import java.io.Reader;
import java.io.StreamTokenizer;
import java.io.StringReader;

public class StreamTokenizerquoteChar {
    public static void main(String[] args) {

        Reader r = new StringReader("HELLO");
        StreamTokenizer streamTokenizer =
new StreamTokenizer(r);

        int ch = 'A';
        streamTokenizer.quoteChar(ch);
        System.out.println("Successfully quoteChar");

    }
}

Output:

Successfully quoteChar


Some other methods of StreamTokenizer

commentChar(int)This method specified that the character argument starts a single-line comment.

eolIsSignificant(boolean)This method determines whether or not the ends of the line are treated as tokens.

lineno()This method returns the current line number.

lowerCaseMode(boolean)This method determines whether or not word tokens are automatically lowercase.

nextToken()This method parses the next token from the input stream of this tokenizer.

ordinaryChar(int)This method specifies that the character argument is "ordinary" in this tokenizer.

ordinaryChars(int, int)This method specifies that all characters c in the range low <= c <= high are "ordinary" in this tokenizer.

parseNumbers()Specifies that numbers should be parsed by this tokenizer.

pushBack()This method causes the next call to the nextToken method of this tokenizer to return the current value in the ttype field, and not modify the value in the nval or sval field.

quoteChar(int)This method specifies that matching pairs of this character delimit string constants in this tokenizer.

resetSyntax()This method resets this tokenizer's syntax table so that all characters are "ordinary."

slashSlashComments(boolean)This method determines whether or not the tokenizer recognizes C++-style comments.

slashStarComments(boolean)This method determines whether or not the tokenizer recognizes C-style comments.

StreamTokenizer(Reader)This method creates a tokenizer that parses the given character stream.

toString()This method returns the string representation of the current stream token and the line number it occurs on.

whitespaceChars(int, int)This method specifies that all characters c in the range low <= c <= high are white space characters.

wordChars(int, int)This method specifies that all characters c in the range low <= c <= high are word constituents.

StreamTokenizer constantsStreamTokenizer.TT_EOF,StreamTokenizer.TT_EOL,etc.

No comments:

Post a Comment