IN JAVA 1 Prompt the user to enter a string of their choosin

(IN JAVA)

(1) Prompt the user to enter a string of their choosing. Store the text in a string. Output the string. (1 pt)

Ex:


(2) Implement a printMenu() method, which outputs a menu of user options for analyzing/editing the string, and returns the user\'s entered menu option. Each option is represented by a single character.

If an invalid character is entered, continue to prompt for a valid choice. Hint: Implement Quit before implementing other options. Call printMenu() in the main() method. Continue to call printMenu() until the user enters q to Quit. (3 pts)

Ex:


(3) Implement the getNumOfNonWSCharacters() method. getNumOfNonWSCharacters() has a string as a parameter and returns the number of characters in the string, excluding all whitespace. Call getNumOfNonWSCharacters() in the main() method. (4 pts)

Ex:


(4) Implement the getNumOfWords() method. getNumOfWords() has a string as a parameter and returns the number of words in the string. Hint: Words end when a space is reached except for the last word in a sentence. Call getNumOfWords() in the main() method. (3 pts)

Ex:


(5) Implement the findText() method, which has two strings as parameters. The first parameter is the text to be found in the user provided sample text, and the second parameter is the user provided sample text. The method returns the number of instances a word or phrase is found in the string. In the main() method, prompt the user for a word or phrase to be found and then call findText() in the main() method. (3 pts)

Ex:


(6) Implement the replaceExclamation() method. replaceExclamation() has a string parameter and returns a string which replaces each \'!\' character in the string with a \'.\' character. replaceExclamation() DOES NOT output the string. Call replaceExclamation() in the main() method, and then output the edited string. (3 pts)

Ex.


(7) Implement the shortenSpace() method. shortenSpace() has a string parameter and returns a string that replaces all sequences of 2 or more spaces with a single space. shortenSpace() DOES NOT output the string. Call shortenSpace() in the main() method, and then output the edited string. (3 pt)

Ex:

This is what is given:

Lab Submission 6.16.1: Program: Authoring assistant (Java) File: AuthoringAssistant.java 1 import java.util.Scanner; 3 public class AuthoringAssistant 4 5 public static void main(String[] args) { /*Type your code here. */ *Type your 7 return; 10

Solution

AuthoringAssistant.java

import java.util.Scanner;


public class AuthoringAssistant {
  
public static void main(String[] args) {
/* Type your code here. */
   Scanner scan = new Scanner(System.in);
   System.out.print(\"Enter a sample text: \");
   String s = scan.nextLine();
   System.out.println(\"You entered: \"+s);
   int count = 0;
     
   String returnString = \"\";
   while(true){
   printMenu();
   System.out.println(\"\ \ Choose an option: \");
   char ch = scan.next().charAt(0);
   if(ch == \'c\' || ch == \'C\'){
       count = getNumOfNonWSCharacters(s);
       System.out.println(\"Number of non-whitespace characters: \"+count);
   }
   else if(ch == \'w\' || ch == \'W\'){
       count = getNumOfWords(s);
       System.out.println(\"Number of words: \"+count);
   }
else if(ch == \'f\' || ch == \'F\'){
   System.out.println(\"Enter a word or phrase to be found: \");
   String find = scan.next();
       count = findText(s, find);
       System.out.println(\"\\\"\"+find+\"\\\" instances: \"+count);
   }
else if(ch == \'r\' || ch == \'R\'){
   returnString = replaceExclamation(s);
   System.out.println(\"Edited text: \"+returnString);
}else if(ch == \'s\' || ch == \'S\'){
   returnString = shortenSpace(s);
   System.out.println(\"Edited text: \"+returnString);
}else if(ch == \'q\' || ch == \'Q\'){
   break;
}     
   }
return;
}
public static void printMenu(){
  
     
   System.out.println(\"MENU\ c - Number of non-whitespace characters\ w - Number of words\ f - Find text\ r - Replace all !\'s\ s - Shorten spaces\ q - Quit\");
     
}
public static int getNumOfNonWSCharacters(String s){
   int count = 0;
   for(int i=0; i<s.length(); i++){
       if(s.charAt(i) != \' \'){
           count++;
       }
   }
   return count;
}
public static int getNumOfWords(String s){
   int count = 0;
   if(s.length()>0){
       count = 1;
   }
   for(int i=0; i<s.length(); i++){
       if(s.charAt(i) == \' \'){
           count++;
       }
   }
   return count;
}
public static int findText(String s, String find){
   int count = 0;
   String words[] = s.split(\"\\\\s+\");
   for(int i=0; i<words.length; i++){
       if(words[i].equalsIgnoreCase(find)){
           count++;
       }
   }
   return count;
}
public static String replaceExclamation(String s){
   String returnString = \"\";
   for(int i=0; i<s.length(); i++){
       if(s.charAt(i) == \'!\'){
           returnString = returnString +\"\";
       }
       else{
           returnString = returnString + s.charAt(i);
       }
   }
     
   return returnString;
}
public static String shortenSpace(String s){
   String returnString = \"\";
   boolean isPreviousCharSpace = true;
   for(int i=0; i<s.length(); i++){
       if(s.charAt(i) != \' \'){
           isPreviousCharSpace = false;
       }
       if(isPreviousCharSpace == false){
           returnString = returnString + s.charAt(i);
       }
       if(s.charAt(i) == \' \'){
           isPreviousCharSpace = true;
       }
         
   }
   return returnString;
}

}

Output:

Enter a sample text: We\'ll continue our quest in space. There will be more shuttle flights and more shuttle crews and, yes, more volunteers, more civilians, more teachers in space. Nothing ends here;
You entered: We\'ll continue our quest in space. There will be more shuttle flights and more shuttle crews and, yes, more volunteers, more civilians, more teachers in space. Nothing ends here;
MENU
c - Number of non-whitespace characters
w - Number of words
f - Find text
r - Replace all !\'s
s - Shorten spaces
q - Quit


Choose an option:
c
Number of non-whitespace characters: 150
MENU
c - Number of non-whitespace characters
w - Number of words
f - Find text
r - Replace all !\'s
s - Shorten spaces
q - Quit


Choose an option:
w
Number of words: 34
MENU
c - Number of non-whitespace characters
w - Number of words
f - Find text
r - Replace all !\'s
s - Shorten spaces
q - Quit


Choose an option:
f
Enter a word or phrase to be found:
r
\"r\" instances: 0
MENU
c - Number of non-whitespace characters
w - Number of words
f - Find text
r - Replace all !\'s
s - Shorten spaces
q - Quit


Choose an option:
s
Edited text: We\'ll continue our quest in space. There will be more shuttle flights and more shuttle crews and, yes, more volunteers, more civilians, more teachers in space. Nothing ends here;
MENU
c - Number of non-whitespace characters
w - Number of words
f - Find text
r - Replace all !\'s
s - Shorten spaces
q - Quit


Choose an option:
q

(IN JAVA) (1) Prompt the user to enter a string of their choosing. Store the text in a string. Output the string. (1 pt) Ex: (2) Implement a printMenu() method,
(IN JAVA) (1) Prompt the user to enter a string of their choosing. Store the text in a string. Output the string. (1 pt) Ex: (2) Implement a printMenu() method,
(IN JAVA) (1) Prompt the user to enter a string of their choosing. Store the text in a string. Output the string. (1 pt) Ex: (2) Implement a printMenu() method,
(IN JAVA) (1) Prompt the user to enter a string of their choosing. Store the text in a string. Output the string. (1 pt) Ex: (2) Implement a printMenu() method,

Get Help Now

Submit a Take Down Notice

Tutor
Tutor: Dr Jack
Most rated tutor on our site