Register
FAQ
Calendar
Search
Today's Posts
Rules
Guidelines
SMS enable your application
via Clickatell’s fast, simple and reliable API's, built to integrate with any system.
Click here
to learn more.
Flash Website Builder
- Trendy Site Builder is a Flash Site Building tool that helps users build stunning websites.
Check Out Custom
Custom Logo Design
by LogoBee. Website Design and Free Logo Templates available.
CodingForums.com
>
:: Client side development
>
JavaScript programming
trim chars
User Name
Remember Me?
Password
Before you post, read our:
Rules
&
Posting Guidelines
Thread Tools
Rate Thread
Enjoy an ad free experience by logging in. Not a member yet?
Register
.
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
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
View Public Profile
Find More Posts by hello20109876
05-08-2006, 03:56 AM
PM User
|
#
2
thesmart1
Regular Coder
Join Date: Dec 2005
Posts: 369
Thanks: 7
Thanked 3 Times in 3 Posts
confused
Do you want the original string to return the trimmed string?
thesmart1
View Public Profile
Visit thesmart1's homepage!
Find More Posts by thesmart1
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
any way to trim it.
hello20109876
View Public Profile
Find More Posts by hello20109876
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
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
View Public Profile
Visit Kravvitz's homepage!
Find More Posts by Kravvitz
05-08-2006, 10:35 AM
PM User
|
#
5
Philip M
Supreme Master coder!
Join Date: Jun 2002
Location: London, England
Posts: 17,037
Thanks: 197
Thanked 2,411 Times in 2,389 Posts
function trim(str) {
s1 = str.replace(/^(\s)*/, '');
s2 = s1.replace(/(\s)*$/, '');
return s2;
}
Philip M
View Public Profile
Find More Posts by Philip M
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
assignments are expensive, it's faster this way:
function trim(str) {
return str.replace(/^\s*|\s*$/g, '');
}
Beagle
View Public Profile
Find More Posts by Beagle
Bookmarks
del.icio.us
StumbleUpon
Google
Digg
Jump To Top of Thread
«
Previous Thread
|
Next Thread
»
Thread Tools
Show Printable Version
Email this Page
Rate This Thread
Rate This Thread
:
5 : Excellent
4 : Good
3 : Average
2 : Bad
1 : Terrible
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 Rules
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
:: Client side development
JavaScript programming
DOM and JSON scripting
Ajax and Design
JavaScript frameworks
Post a JavaScript
HTML & CSS
XML
Flash & ActionScript
Adobe Flex
Graphics and Multimedia discussions
General web building
Site reviews
Building for mobile devices
:: Server side development
Apache configuration
Perl/ CGI
PHP
Post a PHP snippet
MySQL
Other Databases
Ruby & Ruby On Rails
ASP
ASP.NET
Java and JSP
Other server side languages/ issues
ColdFusion
Python
:: Computing & Sciences
Computer Programming
Computer/PC discussions
Geek News and Humour
Web Projects and Services Marketplace
Web Projects
Small projects (quick fixes and changes)
Medium projects (new script, new features, etc)
Large Projects (new web application, complex features etc)
Unknown sized projects (request quote)
Vacant job positions
Looking for work/ for hire
Project collaboration/ partnership
Paid work offers and requests (Now CLOSED)
Career, job, and business ideas or advice
Domains, Sites, and Designs for sale
Domains for sale
Websites for sale
Design templates and graphics for sale
:: Other forums
Forum feedback and announcements
All times are GMT +1. The time now is
11:19 AM
.
Advertisement
Log in to turn off these ads.
Web Hosting UK
|
Dedicated Server Hosting
|
Shareware Junction
|
Software Geek
|
Flash file uploader
|
Cloud Server
|
Web Hosting Australia
Home
-
Contact Us
-
Archives
-
Link to CF
-
Resources
-
Top
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.