Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

image text in transcribed

(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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Concepts of Database Management

Authors: Philip J. Pratt, Mary Z. Last

8th edition

1285427106, 978-1285427102

More Books

Students also viewed these Databases questions