Click here to Skip to main content
15,884,298 members
Articles / Programming Languages / Javascript
Tip/Trick

Trim, LTrim and RTrim Functions using Regular Expressions

Rate me:
Please Sign up or sign in to vote.
5.00/5 (4 votes)
9 Nov 2010CPOL 25.8K   3   3
Trim: remove whitespace from the start and end(both sides) of the string.
LTrim: remove start whitespace of the string.
RTrim: remove end whitespace of the string.
Rather than using a clumsy loop, use a simple, elegant regular expression.

C#
String.prototype.trim = function() {
    return this.replace(/^\s+|\s+$/g,"");
}
String.prototype.ltrim = function() {
    return this.replace(/^\s+/,"");
}
String.prototype.rtrim = function() {
    return this.replace(/\s+$/,"");
}


Example:-
C#
// example of using trim, ltrim, and rtrim
var myString = " hello my name is imdadhusen  ";
alert("*"+myString.trim()+"*");
alert("*"+myString.ltrim()+"*");
alert("*"+myString.rtrim()+"*");



Please do let me know, if you have any doubt.

Please provide "Vote":thumbsup: Up if this would be helpful, and make "Accept Answer" if this would be correct answer.:rose:

Thanks,
Imdadhusen

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead Infostretch Ahmedabad-Gujarat
India India
Aspiring for a challenging carrier wherein I can learn, grow, expand and share my existing knowledge in meaningful and coherent way.

sunaSaRa Imdadhusen


AWARDS:

  1. 2nd Best Mobile Article of January 2015
  2. 3rd Best Web Dev Article of May 2014
  3. 2nd Best Asp.Net article of MAY 2011
  4. 1st Best Asp.Net article of SEP 2010


Read More Articles...

Comments and Discussions

 
GeneralMy vote of 5 Pin
Savalia Manoj M7-Nov-12 1:11
Savalia Manoj M7-Nov-12 1:11 
GeneralRe: My vote of 5 Pin
Sunasara Imdadhusen22-Apr-14 3:49
professionalSunasara Imdadhusen22-Apr-14 3:49 
GeneralEdit: Subject spelling, and other minor errors with spelling... Pin
DaveAuld9-Nov-10 1:00
professionalDaveAuld9-Nov-10 1:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.