About 67,900 results
Open links in new tab
  1. java - Scanner vs. StringTokenizer vs. String.Split - Stack Overflow

    Mar 27, 2009 · If you have a String object you want to tokenize, favor using String's split method over a StringTokenizer. If you're parsing text data from a source outside your program, like from a file, or …

  2. string tokenizer in Java - Stack Overflow

    Consider using String.split, which is also available in 1.4. From the javadocs: StringTokenizer is a legacy class that is retained for compatibility reasons although its use is discouraged in new code. It is …

  3. Tokenize a String in Java - Stack Overflow

    Jun 17, 2014 · StringTokenizer is a legacy class (for several versions of Java now) and should not be used anymore. use regex or String's split method.

  4. Tokenize a string with a space in java - Stack Overflow

    Jan 15, 2017 · 9 The simplest way to do this is by hand implementing a simple finite state machine. In other words, process the string a character at a time: When you hit a space, break off a token; When …

  5. java - String Tokenizer : split string by comma and ignore comma in ...

    Oct 8, 2013 · Tokenize by double-quote symbol and than tokenize strings in the result array by comma symbol (make sure you tokenize strings with indexes 0, 2, 4, etc., since they were not in double …

  6. java - Tokenizing a String but ignoring delimiters within quotes ...

    This regular expression should tokenize the string using either a whitespace (\s) or a double quote. You should use String's split method because it accepts regular expressions, whereas the constructor …

  7. java - Using multiple delimiters with StringTokenizer - Stack Overflow

    Feb 25, 2012 · I'd like to know how I can use multiple delimiters with StringTokenizer in java. For example one of these !,*,/,^ will occur as a delimiter. Also there will only be one at a time.

  8. How do access specific tokens with Java's StringTokenizer?

    String token04 = strTok.tokenNumber(3); etc. but cannot find any methods in the String Tokenizer documentation that will allow that. I can certainly write each line to a String array of …

  9. regex - How can tokenize this string in java? - Stack Overflow

    Feb 22, 2010 · Beyond this point, you'll want to process the string using more mundane methods like charAt() and substring() and Integer.parseInt(). Or, if this isn't a learning exercise, use an existing …

  10. How do I tokenize a string in C++? - Stack Overflow

    Sep 10, 2008 · This is not exactly the "best" answer as it still uses a string literal which is the plain C constant character array. I believe the questioner was asking if he could tokenize a C++ string which …