jueves, 14 de febrero de 2013

Extend class String with Trim function in javascript

String.prototype.trim = function () {
    return this.replace(/^\s+/, '').replace(/\s+$/, '');
}

No hay comentarios:

Publicar un comentario