About ads on Siafoo
Hide Siafoo is here to make coding less frustrating and to save you time. Learn More Join Siafoo

Adds the trim() function to all Strings

In Brief: This will remove leading/trailing white spaces from a String.... more
Language JavaScript
# 's
1String.prototype.trim = function() {
2 return this.replace(/^\s+|\s+$/, "");
3}

This will remove leading/trailing white spaces from a String.

Keywords string (7) javascript (8)
Included in this Library
Average
n/a
Rated
0
Times
5
4
3
2
1
0
License Public Domain
Lines 3
Owner: raziel
Viewable by Everyone
Editable by raziel
Sponsored Links
About ads on Siafoo