List of StringTokenizer methods: Difference between revisions
Jump to navigation
Jump to search
m (Automatically generated page update) |
m (Automatically generated page update) |
||
Line 17: | Line 17: | ||
<tr><td valign="top">[[NextToken (StringTokenizer function)|NextToken]]</td><td valign="top">Next token forward in current tokenizer string</td></tr> | <tr><td valign="top">[[NextToken (StringTokenizer function)|NextToken]]</td><td valign="top">Next token forward in current tokenizer string</td></tr> | ||
<tr><td valign="top">[[NotAtEnd (StringTokenizer function)|NotAtEnd]]</td><td valign="top">Is present tokenizing position at end of tokenizerstring?</td></tr> | <tr><td valign="top">[[NotAtEnd (StringTokenizer function)|NotAtEnd]]</td><td valign="top">Is present tokenizing position at end of tokenizerstring?</td></tr> | ||
<tr><td valign="top">[[PeekChar (StringTokenizer function)|PeekChar]]</td><td valign="top">Value of character at current tokenizing position,do not advance</td></tr> | <tr><td valign="top">[[PeekChar (StringTokenizer function)|PeekChar]]</td><td valign="top">Value of character at current tokenizing position, do not advance</td></tr> | ||
<tr><td valign="top">[[PeekPreviousChar (StringTokenizer function)|PeekPreviousChar]]</td><td valign="top">Value of previous character</td></tr> | <tr><td valign="top">[[PeekPreviousChar (StringTokenizer function)|PeekPreviousChar]]</td><td valign="top">Value of previous character</td></tr> | ||
<tr><td valign="top">[[PeekToken (StringTokenizer function)|PeekToken]]</td><td valign="top">Value of next token in current tokenizer string, do not advance</td></tr> | <tr><td valign="top">[[PeekToken (StringTokenizer function)|PeekToken]]</td><td valign="top">Value of next token in current tokenizer string, do not advance</td></tr> |
Revision as of 04:29, 6 February 2011
The following are the available StringTokenizer class methods.
Method | Description |
---|---|
AtEnd | Is current tokenizing position at the end of the string? |
CompressSpaces | Compress intra-token spaces |
CurrentQuoted | Is current token a quoted token? |
CurrentToken | String value of current token |
CurrentTokenPosition | Position of first character in the current token |
FindToken | Search for specified token |
FoldDoubledQuotes | Doubled quotes treated as escaped quote char |
New | Create new StringTokenizer object |
NextChar | Value of character at current tokenizing position |
NextPosition | Position of character at current tokenizing position |
NextToken | Next token forward in current tokenizer string |
NotAtEnd | Is present tokenizing position at end of tokenizerstring? |
PeekChar | Value of character at current tokenizing position, do not advance |
PeekPreviousChar | Value of previous character |
PeekToken | Value of next token in current tokenizer string, do not advance |
PreviousChar | Value of previous character and step back one position |
Quotes | Characters to be interpreted as quotes |
QuotesBreak | Do quotes break the current token? |
RemoveQuotes | Whether to remove quote characters from returned values |
RestOfString | Non-tokenized substring that follows the next token |
Separators | Characters to be interpreted as field separators |
SkipTokens | Move current token forward a specified number of tokens |
Spaces | Characters to be interpreted as token-delimiting whitespace |
StartOfString | Substring that precedes first character of current token |
String | The string to be tokenized |
StringLength | Length of current tokenizing string |
StringUpTo | String from start to current position |
Substring | Specified substring within tokenizing string |
TokenChars | Characters to be interpreted as tokens |
TokensToLower | Convert returned tokens to all-lowercase |
TokensToUpper | Convert returned tokens to all-uppercase |