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.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
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
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education