171k views
4 votes
This String method removes beginning and ending spaces of the given string.
Solactone​

User Freejosh
by
3.0k points

2 Answers

6 votes

Answer:

String result = str. trim(); The trim() method will remove both leading and trailing whitespace from a string and return the result.

Step-by-step explanation:

User Dath
by
3.2k points
6 votes

Answer:

The trim() method will remove both leading and trailing whitespace from a string and return the result. The original string will remain unchanged. If there is no leading or trailing whitespace to be removed, the original string is returned. Both spaces and tab characters will be removed.

This is very useful when comparing user input with existing data. A programmer often racks his brain for hours trying to figure out why what he enters is not the same as a stored string, only to find out that the difference is only a trailing space. Trimming data prior to comparison will eliminate this problem.

User SlyBeaver
by
3.6k points