Question: ( Pig Latin ) Complete this assignment as written as a Java console application. (a) use a regular expression and the String .matches() method to

(Pig Latin) Complete this assignment as written as a Java console application. (a) use a regular expression and the String.matches() method to validate that all tokens from the String.split() method are alphabetic characters (display an error message for invalid input).
(Pig Latin) Write an application that encodes English-language phrases into pig Latin. Pig Latin is a form of coded language. There are many different ways to form pig Latin phrases. For simplicity, use the following algorithm: To form a pig Latin phrase from an English-language phrase, tokenize the phrase into words with String method split. To translate each English word into a pig Latin word, place the first letter of the English word at the end of the word and add the letters ay." Thus, the word "jump" becomes "umpjay," the word "the" becomes hetay," and the word "computer" becomes computercay." Blanks between words remain as blanks. Assume the following: The English phrase consists of words separated by blanks, there are no punctuation marks and all words have two or more letters. Method printLatinWord should display each word. Each token is passed to method printLatinWord to print the pig Latin word. Enable the user to input the sentence. Then display the converted sentence
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
