StringTokenizer is a Java class that breaks a string into tokens.
12
votes
4answers
14k views
Why is StringTokenizer deprecated?
The Java documentation doesn't seem to mention anything about deprecation for StringTokenizer, yet I keep hearing about how it was deprecated long ago. Was it deprecated because it had bugs/errors, ...
6
votes
3answers
141 views
how does the String.Split method determine separator precedence when passed multiple multi-character separators?
If you have this code:
"......".Split(new String[]{"...", ".."}, StringSplitOptions.None);
The resulting array elements are:
1. ""
2. ""
3. ""
Now if you reverse the order of the separators,
...
5
votes
3answers
4k views
how to split strings in objective c
How to split a string in objective-C? I am working on an short application that contains a date picker. I do display date get it from date picker and display it through a label.
My main question is ...
4
votes
9answers
5k views
Replicating String.split with StringTokenizer
Encouraged by this, and the fact I have billions of string to parse, I tried to modify my code to accept StringTokenizer instead of String[]
The only thing left between me and getting that delicious ...
4
votes
3answers
6k views
Java StringTokenizer, empty null tokens
I am trying to split a string into 29 tokens..... stringtokenizer won't return null tokens. I tried string.split, but I believe I am doing something wrong:
String [] strings = line.split(",", 29);
...
4
votes
2answers
257 views
Java Tokenizer, separating strings
I don't know why I am struggling so badly with this but any help would be much appreciated.
I am creating my own tokenizer that takes in a file with a list of commands, delimiters and values. It ...
3
votes
10answers
4k views
How to replace tokens in a string without StringTokenizer
Given a string like so:
Hello {FIRST_NAME}, this is a personalized message for you.
Where FIRST_NAME is an arbitrary token (a key in a map passed to the method), to write a routine which would ...
3
votes
3answers
3k views
Tokenize problem in Java with separator “. ”
I need to split a text using the separator ". ". For example I want this string :
Washington is the U.S Capital. Barack is living there.
To be cut into two parts:
Washington is the U.S Capital.
...
3
votes
4answers
103 views
StringTokenizer not working properly with delim “//”
I am trying to break string on delim "//". My string also contains "/" and StringTokenizer giving strange result, it also break string on "/".
String mStr = "abcd//aaa//32434//3/34343";
...
3
votes
3answers
574 views
reading a long type from a text file in Java
i'm trying to read long types from a text file with using readLine() method of BufferedReader class and then i parse the first token (which is long type number) with using StringTokenizer but i'm ...
3
votes
5answers
10k views
How to get numbers out of string?
I'm using a Java StreamTokenizer to extract the various words and numbers of a String but have run into a problem where numbers which include commas are concerned, e.g. 10,567 is being read as 10.0 ...
3
votes
1answer
126 views
Split text in JME and assign values in an array
I'm trying to create an array in j2me with split text. I'm trying to use the StringTokenizer class from ostermiller.org. However I can't figure out how to assign the tokens into an array. What could ...
3
votes
6answers
5k views
Private Methods Over Public Methods
I was examining the StringTokenizer.java class and there were a few questions that came to mind.
I noticed that the public methods which are to be used by other classes invoked some private method ...
3
votes
3answers
134 views
stringtokenizer returns wrong tokens
I want to "parse" a given string into vectors. A vector starts with "[" and ends with "]". The values of the vector as well as the vectors themself are seperated by ",". If I use integers as values my ...
3
votes
2answers
226 views
I want to search for a string using StringTokenizer but the string I'm looking for has a delimiter in it - Java
I have an external file named quotes.txt and I'll show you some contents of the file:
1 Everybody's always telling me one thing and out the other.
2 I love criticism just so long as it's unqualified ...
3
votes
2answers
6k views
Using string tokenizer to set create arrays out of a text file?
Hey. You may have recently seen a post by me looking for help, but I did it wrong before, so I am going to start fresh and begin at the basics.
I am trying to read a text file that looks like this:
...
3
votes
2answers
117 views
Getting words using a StringTokenizer
I am currently trying to implement a Pokedex which just uses an array list to store Pokemon objects. this is supposed to be a command line interface with certain commands like add, remove, info, help, ...
3
votes
0answers
2k views
AutoCompleteTextView backed by CursorLoader
So I am having trouble extending the MultiAutoCompleteTextView and backing it with a CursorLoader, while simultaneously using a custom Tokenizer. The issue rises specifically with the ...
2
votes
9answers
22k views
How to find a whole word in a String in java
I have a String that I have to parse for different keywords.
For example, I have the String:
"I will come and meet you at the 123woods"
And my keywords are
'123woods'
'woods'
I should report ...
2
votes
5answers
2k views
StringTokenizer problem of tokenizing
String a ="the STRING TOKENIZER CLASS ALLOWS an APPLICATION to BREAK a STRING into TOKENS. ";
StringTokenizer st = new StringTokenizer(a);
while (st.hasMoreTokens()){
...
2
votes
4answers
221 views
How to split a String with multiple delimiters in Java
I am trying to have the desired outputs like this:
555
555
5555
by using codes:
public class Split {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated ...
2
votes
3answers
167 views
Why is this string tokenizer making me cast to string?
I Think I broke this down to the most basic form. If not then I apologize and will try to edit it. Why in my while loop do I need to cast String for the FirstName if I already set the variable to be a ...
2
votes
2answers
122 views
Assign Value to Empty Content in StringTokenizer
I have to read inputs from a file which consists of pipe delimetered strings
A|UK|2|1
B||3|1
StringTokenizer st = new StringTokenizer(data,"|");
String id=st.nextToken();
String ...
2
votes
2answers
77 views
StringTokenizer doesn't show the 0 at the end of a number
i'm working with Java ,i'm using a StringTokenizer in order to have a part of my String but the problem is when i'm using "StringTokenizer" a part of my result doesn't appear this is my java code :
...
2
votes
4answers
83 views
Remove spaces outside “” from String
How can I remove all whitespaces that are outside "" on a String?
For example:
0507 ? "Y e a" : "No"
Should return:
0507?"Y e a":"No"
Thank you.
2
votes
4answers
5k views
C# Tokenizer - keeping the seperators
I am working on porting code from JAVA to C#, and part of the JAVA code uses tokenizer - but it is my understanding that the resulting array from the stringtokenizer in java will also have the ...
2
votes
1answer
854 views
trouble with StringTokenizer
I'm getting the following error message and I can't seem to figure out the problem. Would really appreciate any help. The error message reads as:-
BaseStaInstance.java:68: cannot find symbol
symbol ...
2
votes
1answer
591 views
Is there a function to cast string tokenizer to array
I am working over an hour to find a way to explode a string into a string array.
This method have failed for me:
lineFields = str.split("|");
System.out.print(lineFields.length);
because it gives ...
2
votes
2answers
2k views
Java - Saving StringTokenizer into arrays for further processing in other methods
I've been coding Perl and Python a lot and this time I got an assignment to code in Java instead. So I'm not too familiar with handling data in Java.
My task involves having a input file where I need ...
2
votes
2answers
106 views
Java String separation [closed]
I am stuck trying to get the desired output. Its actually a string separation problem I am facing in the another problem.
// Inputs
String input1 = "=DIVIDE(Input!RC,Input!R[1]C)"; // B1
...
2
votes
4answers
652 views
Regular expression for 6 digit number with optional 2 decimal digits
Hi guys i need regular expression for 6 digit number with optional 2 decimal digit
Allowed values:
.1 .11 0.11 10. 10.1 10.12 00.00 0.0 00.00
123456 12345 1234 123 12 1 0 0. 123. ...
2
votes
3answers
3k views
Parsing Data from CSV to Array in Java
I'm trying to import a CSV file into an array that I can use within a Java program. The CSV file has successfully imported itself and the output appears on Terminal but it throws the error:
Exception ...
2
votes
2answers
217 views
Scanner Class to create tokens of an input file
I have written the following code in java to open another .java file and create tokens (using scanner class)
import java.io.FileReader;
import java.util.Scanner;
public class scanner1 {
public ...
2
votes
1answer
209 views
Do tokenizers remove whitespaces?
Does Lucene's Standard Tokenizer remove whitespaces and blank lines? I've been reading the API (StandardTokenizer) but it's not specified. Maybe tokenizers do it by default, I don't know.
2
votes
5answers
206 views
spliting string into an array of ints
I have a string s="1,2,3,4,5" . I am using the split() method to split the string then i want to store it into an array of ints.
I tried doing the following but it doesnt work.
int ...
2
votes
1answer
133 views
tokenize string
I got a string with the following format : yyyyMMdd_HHmm_ss_unitCode_(status).
I need to map each component to a property of a dedicated class.
I thought of defining my token with a regular ...
2
votes
1answer
337 views
Token replacement
I currently implement a replace function in the page render method which replaces commonly used strings - such as replace [cfe] with the root to the customer front end. This is because the value may ...
1
vote
5answers
466 views
Break String into Sub-Strings, Android
I am making a program which would have the user enter a sentence and following that, the app would break the String into sub-strings where spaces are what break the original string up.
import ...
1
vote
2answers
292 views
Java Split String Using Delimiter [duplicate]
Possible Duplicate:
Matching a “.” in java
I have a String 1.2.4 which i want to split and get 2 to compare it with another String that i get.
I am trying to do the following
...
1
vote
3answers
201 views
Read input file with backslash (\) delimiter c++
My input file is like this:
C:\Users\DeadCoder\AppData\Local\CoCreate
I am making a tree and I need to abstract the names of directories while reading from input file with \ delimiter. Like in the ...
1
vote
3answers
289 views
StringTokenizer for split space
I have strings follow format:
2012.11.15 22:00:00 1.2971 1.2974 1.2959 1.296
I use follow code:
DateFormat df = new SimpleDateFormat("yyyy.MM.dd HH:mm:ss");
String inputLine;
...
1
vote
4answers
987 views
using tokenizer to read a line
public void GrabData() throws IOException
{
try {
BufferedReader br = new BufferedReader(new FileReader("data/500.txt"));
String line = "";
int lineCounter = 0;
int ...
1
vote
2answers
2k views
Using multiple delimiters with StringTokenizer
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.
1
vote
3answers
1k views
How to randomly access nth element in StringTokenizer
Is there anyway we can directly access a certain(lets say 20th) element in a stringTokenizer. Every now and then I need only a certain element from it and do not need others, yet I have to traverse ...
1
vote
3answers
984 views
Split string using pl/sql using connect level on null value
I'm using this following code in Oracle pl/sql
(Version: Oracle Database 11g Release 11.2.0.1.0)
select regexp_substr('A~B~C','[^~]+',1,level) output
from dual
connect by level <= ...
1
vote
1answer
134 views
Split string with multiple delimiter including delimiters
I would like to split a string using multiple character delimiters, but I also want to store delimiters. My delimiters are ()+-*/
So for example, if I had a string
26+78(12*23)-16
I want to get
...
1
vote
4answers
1k views
Ignore parentheses with string tokenizer?
I have an input that looks like: (0 0 0)
I would like to ignore the parenthesis and only add the numbers, in this case 0, to an arraylist.
I am using scanner to read from a file and this is what I ...
1
vote
5answers
5k views
Does PL/SQL have an equivalent StringTokenizer to Java's?
I use java.util.StringTokenizer for simple parsing of delimited strings in java. I have a need for the same type of mechanism in pl/sql. I could write it, but if it already exists, I would prefer to ...
1
vote
4answers
44 views
StringTokenizer issues with if statements
I have to tokenize a string which looks like this:
4830673048;Tony White
There must be two tokens separated by a ;
The first token must contain 10 digits, and ONLY digits
The second token may not ...
1
vote
4answers
44 views
How to retrieve portion of number that's within parenthesis in Java?
For part of my Java assignment I'm required to select all records that have a certain area code. I have custom objects within an ArrayList, like ArrayList<Foo>.
Each object has a String ...

