
/**
 * Write a description of class MoreStringMethods here.
 * 
 * @author (your name) 
 * @version (a version number or a date)
 */
public class MoreStringMethods
{
    /**
    * will print the length of a given word.  
    */
    public void printLength(String word)
    {
        
    }
    
    /**
    * this method takes in a string and prints
    * out the last letter of the string
    */
    public void findLast(String word)
    {
           
    }

    /**
    * This method will takes in a string and puts a "-" after the 3rd character
    * Look at the code above for the answer!
    */
    public void wordSplit(String word)
    {
           
    }
    
    /**
    *Step 1:makes two substrings from two given words.
    *Step 2:makes a new word from those substrings.
    *if newString("apple","banana",1,3) is called:
    *"pplana" is returned...
    */
    public void newString(String word1, String word2, int start, int end)
    {
        
    }
}
