Tagged Questions

5
votes
4answers
634 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, ...
3
votes
8answers
2k 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 ...
2
votes
1answer
58 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
5answers
94 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
4answers
1k 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 ...
2
votes
5answers
345 views

C++ String tokenisation from 3D .obj files

I'm pretty new to C++ and was looking for a good way to pull the data out of this line. A sample line that I might need to tokenise is f 11/65/11 16/70/16 17/69/17 I have a tokenisation method that ...
2
votes
3answers
2k 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); ...
1
vote
2answers
348 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; ' || ...
1
vote
3answers
127 views

Java Performance issue for long length StringTokenizer

I have a program that read and process data in a raw text String using StringTokenizer Originally the StringTokenizer contains about 1,500 tokens and the program works fine. However the raw content ...
1
vote
4answers
538 views

Java How to Convert Token to String?

Cant seem to figure out how to convert a Token (StringTokenizer) into a String. I have a String[] of keywords, and I read in multiple lines of text from a text file. StringTokenizer is used to chop ...
1
vote
7answers
2k 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 ...
1
vote
3answers
726 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. ...
0
votes
2answers
68 views

string tokenizer wrong usage in java

I believe I am not using correctly String Tokenizer. Here is my code: buffer = new byte[(int) (end - begin)]; fin.seek(begin); fin.read(buffer, 0, (int) (end - ...
0
votes
4answers
78 views

Tokenizing strings using regular expression in Javascript

Suppose I've a long string containing newlines and tabs as: var x = "This is a long string.\n\t This is another one on next line."; So how can we split this string into tokens, using regular ...
0
votes
3answers
124 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 ...
0
votes
4answers
48 views

How to extract the proper String?

I have a string like this: 14.809180,56.876968,0.000000 14.808170,56.877048,0.000000 14.805100,56.877220,0.000000 14.804130,56.877338,0.000000 i.e, at the beginning there's a space and also after ...
0
votes
3answers
288 views

Caused by: java.util.NoSuchElementException

Hello all i am working with following code code is work fine with below string StringTokenizer st = new StringTokenizer("abc,koch, Ranchi, zalkhand, NY, 10001, India"); but when i remove any ...
0
votes
5answers
167 views

How to seperate state, city, zipcode,contry etc. from address string?

I want to separate street, city, state, country, zip code String = Kanaka, Ranchi, zalkhand, 10001, India public class Test extends Activity { /** Called when the activity is first created. */ ...
0
votes
3answers
1k views

How does the java “ stringtokenizer.nextToken(delimiter); ” work?

What i mean is what string values are accepted as delimiters? this is because i keep trying to use a string composed of several different characters but the program just seems to ignore it as just ...
0
votes
2answers
274 views

Consecutive Delimiters in StringTokenizer

I have to tokenize the following String 12/12/2010:{content1:[{xyz,abc}],13/12/2010:{content2:[{xyz,abc},{content3:[{aa,bb}]}] I nee to split up the above string if it has }] consequtively. So I ...
-1
votes
2answers
266 views

Why is this StringTokenizer not tokenizing properly following the second time?

I want to parse the following using StringTokenizer for every string matching agent>. I tried it using the code like this. Where I am going wrong? StringTokenizer stringtokenizer=new ...