In this exercise all sorts of manipulations on text are done. All of these manipulations are expected to be done within the class TextManipulation
.
The following things are expected to be implemented:
convertToUpperCase(String string)
convertToLowerCase(String string)
isAnagram(String a, String b)
reverseString(String a)
caesarCipherCode(String input, int cyperShift)
. A Caesar cipher is obtained by shifting each character in a string a fixed number of places in the alphabet and using these shifted characters to create an encoded message. Note that the following conditions do apply: caesarCipherDecode(String input, int cyperShift)
No main()
method is needed for this exercise!
From Caesar Cipher - Computer Science by Example1