StringTokenizer is a Java class that breaks a string into tokens.
1
vote
5answers
545 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
votes
3answers
48 views
Explanation of code segment
What are the values of s1, s2, and s3 after the following code executes?
String s1, s2, s3="";
StringTokenizer line = new StringTokenizer("You are cool");
s1 = line.nextToken();
s2 = ...
3
votes
2answers
118 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, ...
0
votes
2answers
45 views
Group by using a delimitor oracle
I have the data in the format
data
column1 column2
abcd ~123~abd~
The data in column 2 is separated by ~
the output should be in the format in two rows
column1 column2
abcd 123
abcd ...
0
votes
2answers
237 views
Java StringTokenizer how to find the end of the paragraph?
I am study Java String Tokenizer. I am looking for the way to find end of the paragraph.
For example, I have one text file..
HI
I am bob the the bob
And I am am bob bob bob lu the the
hello
I ...
-1
votes
2answers
107 views
Error with StringTokenizer Iterator Not being found
data_structures/ExpressionEvaluator.java:14: incompatible types.lang.String)
found : java.util.StringTokenizer class data_structures.ExpressionEvaluator
required: ...
-2
votes
2answers
260 views
StringTokenizer and HashMap (logic required)
Scenario: You have been supplied with an ascii text file containing one day’s worth of catch records.
Each line in the file contains one "colon separated" catch record with three fields:
...
-3
votes
2answers
128 views
To ignore special characters and html code of a string and store the words in to one column of a table
I have a Code,
import java.util.*;
import java.util.Scanner;
import java.util.StringTokenizer;
class CountWords{
public static void main(String[] args)
{
Scanner input=new ...
2
votes
1answer
338 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 ...
0
votes
1answer
46 views
Java Project: Having issues with string tokenizer
This is what I have so far:
//class to calculate grades
import java.util.StringTokenizer;
public class Grades {
//variables
private String studentName;
private int studentId;
private ...
0
votes
1answer
1k views
StringTokenizer and Array Java
I am completed the whole program, and it is working fine. But, I am having trouble with the StringTokenizer. I have class named Worker.java and a test class named TestWorker.java...
In the test class ...
0
votes
1answer
1k views
Parsing text file line by line to array using BufferedInputStream with RTL characters in Java
Guys I need to understand something:
the \n comes at the begining of a new line currect?
If so, I am trying to parse a file that has RTL characters in it and they are at the begining of a line, so:
...
-2
votes
1answer
487 views
extract string using java StringTokenizer, split or scanner
I want to extract the string between <a: href> and </a: href> from the following:
<a: href> https://0.0.0.1/abcd/openthis.pdf </a: href>
using StringTokenizer, split or ...
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 ...
1
vote
0answers
68 views
Undeclared identifier when passing struct using pointers
I have the following method to read a file into a struct, but, the program is bombing when it gets to the write file method as the curr variable is empty.
I have added a null check when the variables ...
1
vote
0answers
111 views
Tokenizing the content of siblings in a DOM tree
I have a plan to traverse a dom tree in postorder fashion, then when its traversing through the siblings of each depth , for each sibling group, i want to get the number of elements in the text ...
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
0answers
105 views
How can i use scanner and tokens?
i have already asked about how can i split the user's input using tokens but i want to split it using the scanner class in order to use each token separately ...
example...
suppose that we have this ...
0
votes
0answers
133 views
Which is slower, StringTokenizer or SQLite insert
I'm making a flashcard app, that has about 1000 words in 6 different languages (total 6000 words). They initially are in a text file, and when the app first runs, I install into the SQLite database ...