Tagged Questions
-4
votes
2answers
96 views
Split the words using string tokenizer if it is followed by two or more space/whitespace in java? [duplicate]
In my string, i want to tokenize string on the basis of two or more spaces.
E.x.
String str = "I am Chaitanya Gadam. Split this string."
StringTokenizer tokenizer = new ...
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,
...
0
votes
0answers
65 views
StringTokenizer returns wrong token (null)
I use a StringTokenizer, to seperate Strings and read out the information.
My problem is: the second loop does not read out the last number.
(this is just an example, i have the same problem in my ...
0
votes
2answers
70 views
why StringTokenizer does not work properly for $$ as delimeter
I am using StringTokenizer to tokenize a string with $$ as delimeter but if my string is like $1$dga74 then it tokenize this from first $. Can any body tell me why this happens and what can I do to ...
1
vote
5answers
542 views
Tokenizing a String with tab delimiter in Java while skipping some tokens
I have a huge file with data (~8Gb / ~80 Million records). Every record has 6-8 attributes which are split by a single tab. I would like for starters to copy some given attributes in another file. So ...
1
vote
2answers
260 views
Android StringTokenizer - reading blank values
I have pipe delimited strings containing id, latitude, longitude, refname, userid, username:
1390|-32.5506782531738|18.9797592163086|Hardie - Vrede 4|21|Hardie van der Merwe
...
0
votes
2answers
791 views
Ideas for Create a lexical analyzer program using java
I am trying to create a lexical analyzer program using java.Program must have the concept of tokenization .I have beginner level knowledge in compiler programming.I know there are lot of Lexical ...
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 ...
0
votes
2answers
112 views
Add if statements to tokenize
I am trying to write a program that will take a text file with commands such as insert, delete and sort and have them insert or delete a node from a linked list. So far I have been able to tokenize ...
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.
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
1answer
164 views
Tokenizer in java dealing with spaces and apostorophes
I was wondering if there is any way in Java to tokenize an string by spaces, BUT if there are some words between apostrophes, take it as "one word"...
so for example, if I have:
This "is a great" ...
0
votes
5answers
1k 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
5answers
348 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. */
...
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 ...
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.
...
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
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 ...