StringTokenizer is a Java class that breaks a string into tokens.
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 ...
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, ...
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 ...
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);
...
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 ...
1
vote
2answers
147 views
Java - File compare; Search string in next concurrent line(Ignore whitespace)
Im trying File comparison in Java.
How do I search for string in the next occuring line(ignoring whitespace)
Eg:
**File1** **File2**
<name>abc</name> | ...
1
vote
3answers
677 views
RegEx split string with on a delimeter(semi-colon ;) except those that appear inside a string
I have a Java String which is actually an SQL script.
CREATE OR REPLACE PROCEDURE Proc
AS
b NUMBER:=3;
c VARCHAR2(2000);
begin
c := 'BEGIN ' || ' :1 := :1 + :2; ' || ...
3
votes
5answers
9k 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 ...
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 ...
0
votes
2answers
1k views
java StringTokenizer - can nextToken return null?
Is there any case where StringTokenizer.nextToken will return null?
I'm trying to debug a NullPointerException in my code, and so far the only possibility I've found is that the string returned from ...
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
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:
...
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 ...
1
vote
5answers
2k views
String tokenization in java (LARGE text)
I have this large text (read LARGE). I need to tokenize every word, delimit on every non-letter. I used StringTokenizer to read one word at a time. However, as I was researching how to write the ...
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 ...
0
votes
3answers
60 views
To tokenize the values in a hashmap
I have a map whcih has the key value as long and value as String. The values of the map are obtained from the db and it is in the below format.
1: ...
0
votes
2answers
307 views
android replace delimeter with newline
I have a string which has delimiter in it. I want to know the best way to replace the delimiter with a new line. I have had various issues with using the String Tokenizer the main problem being ...
-1
votes
1answer
150 views
Java - Reading data using string tokenizer for jTable
I have a file called Items.dat, which looks like this:
Item1
subItemA
subItemB
subItemC
Item2
subItemE
subItemR
subItemT
and etc...
Using string Tokenizer, how do I input these data into a ...