HOW TO PARSE FILE WITH SEVERAL DELIMITERS AND LINE FEEDERS
View Answers
November 18, 2009 at 5:29 PM
Hi Friend,
Try the following code:
import java.io.*;
import java.util.regex.*;
public class Read{
public static void main(String[]args) throws Exception{
BufferedReader bf = new BufferedReader(new FileReader("C:\\file.txt"));
String line;
String data="";
while ( (line = bf.readLine()) != null ) {
String replacedData=line.replaceAll("[|,|:|/|\\|\'><*}{^();]"," ").replaceAll("\"","").replace('[',' ').replace(']',' ');
System.out.println(replacedData);
}
}
}
In file.txt, we have added the data provided by you.
Hope that the above code will be helpful for you.
Thanks
Related Tutorials/Questions & Answers:
Java Parse text file with several delimitersParse text
file with
several delimiters
In this section, you will learn how to
parse file with
several
delimiters and
line feeders. We have used BufferedReader class in order to read the
file. All the
delimiters and the
line Advertisements
Java Comments;
To comprehend any programming language, there are
several kind... i.e. //. The
line starting from slashes to the end is
considered as a comment. We can write only a single
line comment use these
slashes. For instance
Java Comments;
To comprehend any programming language, there are
several kind of comments which... a comment to the program, we can use two slashes
characters i.e. //. The
line starting...
line comment use these
slashes. For instance
// This comment extends to the end
Java Comments;
To comprehend any programming language, there are
several kind of comments which... a comment to the program, we can use two slashes
characters i.e. //. The
line starting...
line comment use these
slashes. For instance
// This comment extends to the end
I/O Program output error that requries me to read and analyze a .txt
file and output the results to a .txt
file, but I am getting incorrect output. I have been successfull with part of the program in that it reads the text
file and analyzes it, however I need it to take
Scanning and Formatting in Java to match
delimiters.
public Pattern delimiter()
next() : This method is used... the next
line from
the scanner's input.
public String nextLine...
line or not. It returns 'true' if the scanner has next
line.
public