Go Back   CodingForums.com > :: Client side development > JavaScript programming

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 05-08-2006, 03:49 AM   PM User | #1
hello20109876
New Coder

 
Join Date: May 2006
Posts: 17
Thanks: 0
Thanked 0 Times in 0 Posts
hello20109876 is an unknown quantity at this point
trim chars

which java-script function can trim chars at left and right side of a string?

i.g.
original string: "\r hello \n\t ";
trimed string: "hello"

thx
hello20109876 is offline   Reply With Quote
Old 05-08-2006, 03:56 AM   PM User | #2
thesmart1
Regular Coder

 
thesmart1's Avatar
 
Join Date: Dec 2005
Posts: 369
Thanks: 7
Thanked 3 Times in 3 Posts
thesmart1 is an unknown quantity at this point
confused

Do you want the original string to return the trimmed string?
thesmart1 is offline   Reply With Quote
Old 05-08-2006, 07:02 AM   PM User | #3
hello20109876
New Coder

 
Join Date: May 2006
Posts: 17
Thanks: 0
Thanked 0 Times in 0 Posts
hello20109876 is an unknown quantity at this point
any way to trim it.
hello20109876 is offline   Reply With Quote
Old 05-08-2006, 07:17 AM   PM User | #4
Kravvitz
Senior Coder

 
Join Date: Feb 2006
Location: USA
Posts: 1,013
Thanks: 0
Thanked 0 Times in 0 Posts
Kravvitz is an unknown quantity at this point
Please search first next time. (click this)
__________________
Learn CSS. | SSI | PHP includes | X/HTML Validator | CSS validator | Dynamic Site Solutions
Java != JavaScript && JScript != JavaScript
Design/program for Firefox (and/or Opera), apply fixes for IE, not the other way around.
Kravvitz is offline   Reply With Quote
Old 05-08-2006, 10:35 AM   PM User | #5
Philip M
Supreme Master coder!

 
Philip M's Avatar
 
Join Date: Jun 2002
Location: London, England
Posts: 17,037
Thanks: 197
Thanked 2,411 Times in 2,389 Posts
Philip M has a spectacular aura aboutPhilip M has a spectacular aura aboutPhilip M has a spectacular aura about
function trim(str) {
s1 = str.replace(/^(\s)*/, '');
s2 = s1.replace(/(\s)*$/, '');
return s2;
}
Philip M is offline   Reply With Quote
Old 05-08-2006, 03:06 PM   PM User | #6
Beagle
Senior Coder

 
Join Date: Jul 2005
Location: New York, NY
Posts: 1,084
Thanks: 4
Thanked 19 Times in 19 Posts
Beagle is an unknown quantity at this point
assignments are expensive, it's faster this way:

function trim(str) {
return str.replace(/^\s*|\s*$/g, '');
}
Beagle is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 11:19 AM.


Advertisement
Log in to turn off these ads.