13
Don't forget to count the space.
trim()
MethodHere is a line of the documentation for the
public String trim();
The trim()
method of a String
objectcreates a new String
that is the same as the originalexcept that any leading or trailing space is trimmed off (removed).
Examine the following code:
String userData = " 745 ";String fixed;fixed = userData.trim();
Has the trim()
method been used correctly?How many objects have been created?