Some lines in the file have a line number, as shown in the following figure. A line number is the first word in the line. A line number is delimited by one or more whitespace characters. A line number may also be preceded with one or more whitespace characters. Write a program that prompts the user to enter a file name, reads the lines from the file, and replaces the line numbers in the file with appropriate numbers of spaces. For example, you need to replace the line number 2 with one space and line number 34 with two spaces, and you should keep the two spaces preceding line number 34. Name your class file as RemoveLineNumber.java. You do not need to submit the .txt file that you use to test your program.

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter13: File Input And Output
Section: Chapter Questions
Problem 6PE
icon
Related questions
Question

this is a java program code please do the code what in the question says and please follow what in the question says and dont copy or plagarise from other sources 

2.
Remove Line Numbers in a File
Some lines in the file have a line number, as shown in the following figure. A line number is the first
word in the line. A line number is delimited by one or more whitespace characters. A line number
may also be preceded with one or more whitespace characters. Write a program that prompts the
user to enter a file name, reads the lines from the file, and replaces the line numbers in the file with
appropriate numbers of spaces. For example, you need to replace the line number 2 with one space
and line number 34 with two spaces, and you should keep the two spaces preceding line number 34.
Name your class file as RemoveLineNumber. java. You do not need to submit the .txt file that
you use to test your program.
public class Test {
2 This line has a line number, etc.
int x = 3594;
34 good bad
public class Test {
This line has a line number, etc.
int x = 3594;
good bad
Hints:
Transcribed Image Text:2. Remove Line Numbers in a File Some lines in the file have a line number, as shown in the following figure. A line number is the first word in the line. A line number is delimited by one or more whitespace characters. A line number may also be preceded with one or more whitespace characters. Write a program that prompts the user to enter a file name, reads the lines from the file, and replaces the line numbers in the file with appropriate numbers of spaces. For example, you need to replace the line number 2 with one space and line number 34 with two spaces, and you should keep the two spaces preceding line number 34. Name your class file as RemoveLineNumber. java. You do not need to submit the .txt file that you use to test your program. public class Test { 2 This line has a line number, etc. int x = 3594; 34 good bad public class Test { This line has a line number, etc. int x = 3594; good bad Hints:
Hints:
a. You can create a .txt file with the above example to test your program. When running your test
program, you should give the file path starting from the working directory. The default working
directory in NetBeans is your project folder. Thus, you should give the file path starting from
your project folder. Alternatively, you may put your .txt file in the project folder. Then you
can simply use the file name when running your program.
and
b. To remove the line numbers, you may need to use String methods trim(), matches (),
split (). Check the URL https://docs.oracle.com/en/java/javase/20/docs/
api/java.base/java/lang/String.html for more information about these methods.
Please note that split () has an overloaded version with a second parameter, which might be
useful in this question. And please also note that matches () and split () accept regular
expressions as their parameters.
Transcribed Image Text:Hints: a. You can create a .txt file with the above example to test your program. When running your test program, you should give the file path starting from the working directory. The default working directory in NetBeans is your project folder. Thus, you should give the file path starting from your project folder. Alternatively, you may put your .txt file in the project folder. Then you can simply use the file name when running your program. and b. To remove the line numbers, you may need to use String methods trim(), matches (), split (). Check the URL https://docs.oracle.com/en/java/javase/20/docs/ api/java.base/java/lang/String.html for more information about these methods. Please note that split () has an overloaded version with a second parameter, which might be useful in this question. And please also note that matches () and split () accept regular expressions as their parameters.
Expert Solution
steps

Step by step

Solved in 5 steps with 7 images

Blurred answer
Knowledge Booster
File Input and Output Operations
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr