JAVA LAnguage
Programming Project 10.25 Programming Fundamentals II - Dallas College
Instructions:
Note: this assignment is a simplified version of Exercise 10.25 from your eTextbook on
Revel
In Java, the split method in the String class is very versatile and powerful, especially due
to the ability to use regular expressions with it.
This assignment consists of implementing a limited version of the split method which
only allows the use of a single character as delimiter between substrings in a given
string.
Download the adjacent source file Exercise10_25.java and replace the call to the String
split method with your own code.
Run the program before you modify it and you should get the following output:
When you are done with your changes, you should still get the same output.
Warning: You may only use the language constructs covered in this course up to
Chapter 10. If you use Java functions or features we have not yet covered, your program
will be rejected.