// Implement a String class which will store the String as an array of chars // As the MyString will be immutable, make the array be exactly equal to the size of the String // include methods of: toString (to print it out), replace, length, split, toLowerCase, toUpperCase public class MyString { private char[] string; public MyString() // no arg constructor, no String to create { string = null; } public MyString(String s) // copy each character of s into an array element { string = new char[s.length()]; for(int i=0;i