# subString(int start, int end); String a = "Hello!"; b = a.subString(0,a.length()-1) #Remove the last String # b should be "Hello" then