stripTabs method

String stripTabs()

Trim whitespaces at the edges, and remove all tabs from the content of the string.

Implementation

String stripTabs() {
	return this.trim().replaceAll("\t", "");
}