|
Create a new String object and append each character of the second String to the new one. A for loop starting from the last character of the first string going towards its beginning is enough. Check substring() method of String class to get one character at each step of your loop.
|