Question: Question 4 In Java please (StringTools.java, StringToolsTester.java) Write a class of static methods that accomplish the following tasks. In all cases do not look for

Question 4

In Java please

(StringTools.java, StringToolsTester.java) Write a class of static methods that accomplish the following tasks. In all cases do not look for built-in methods that accomplish the task, use loops as well as String and Character methods to get the tasks done. Use a scanner to collect user inputs

reverse(String s) : String

-take a String as an argument and return the String reversed. Eg. Hello would be returned as olleH.

binaryToDecimal(String s) : int

-take a String as an argument and return the decimal equivalent as an integer. If any of the characters are neither zero nor one return null. Eg. 1000 would return 8. 10001 would return 17. 111111 would return 63. 111112 would return -1. (because its not valid) 100001.1 would return -1. (because its not valid)

initials(String s) : String

-take a String as an argument and return a properly initialized and capitalized name. If the String does not contain exactly three names return null. Eg. James tiBeriUs kiRK would return J. T. Kirk. jean luc picard would return J. L. Picard. RicHard hEwiTt would return null.

mostFrequent(String s) : char

-take a String and return the Character that occurs most frequently. In the event of a tie, return the last character that was checked in the tie.

replaceSubString(String s1, String s2, String s3) : String

-take three Strings as arguments. The first String is the users text. The second String is a pattern to look for. Make all Strings lowercase in the method to facilitate search and replace. The third String is a pattern to replace the second String with. Eg: the dog jumped over the fence as the first String, the as the second and that as the third. Returned String is that dog jumped over that fence.

Write a tester class that shows off all of your methods. Be sure that errors (input that results in null) are handled properly. (remember, you can test for null)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!