2
votes
2answers
228 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 ...
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
1answer
310 views

Using Tokenizer with ArrayLists in Java

I am trying to take an ArrayList of strings and separate it so that i can extract a title from each line. Here is the contents of the ArrayList: Tom Sawyer;Twain, Mark;1972;8.50;f; Leaves of ...
0
votes
1answer
388 views

Tokenising a String containing empty tokens

I have a seemingly simple problem of splitting a comma separated String into tokens, whereby the output should include empty tokens in cases where: The first character in the String is a comma. The ...
0
votes
2answers
315 views

Facing difficulty while using BufferedInputStream inplace of Scanner

For reading input from STDIN i always used Scanner object. Recently I read about BufferedInputStream here that BufferedInputStream is fastest way to read input. In Scanner we have various methods (to ...
-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 ...