List of StringTokenizer methods: Difference between revisions
Jump to navigation
Jump to search
m (Automatically generated page update) |
m (Automatically generated page update) |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
<!-- This page was automatically generated and will be automatically | <!-- This page was automatically generated and will be automatically | ||
replaced, so any manual edits will be lost. You've been warned. --> | replaced, so any manual edits will be lost. You've been warned. --> | ||
The following are the available [[StringTokenizer class]] methods. | The following are the available <var>[[StringTokenizer class|StringTokenizer]]</var> class methods. | ||
{{Template:Method list header|class=StringTokenizer}} | {{Template:Method list header|class=StringTokenizer}} | ||
<div class="showVisit"> | <div class="showVisit"> | ||
Line 49: | Line 49: | ||
</tr> | </tr> | ||
</table> | </table> | ||
[[Category:Lists of methods]] |
Latest revision as of 20:34, 1 November 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 around returned values of quoted tokens |
RestOfString | Non-tokenized substring that follows the next token |
Separators | Characters to be interpreted as token 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 |