473,625 Members | 3,353 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

how to use trim() in javascript

18 New Member
i used the below code for trimming..

Expand|Select|Wrap|Line Numbers
  1.   var str = "    blah blah   ";
  2.                         var trimmed = str.replace(/^\s+|\s+$/g, '') ;                        
  3.                         alert(trimmed);
  4.                         alert(trimmed.value.length);
its aint working.. i think small error..
can any1 retify..
thanks in advance..
Mar 25 '08 #1
5 17581
aswath
18 New Member
i used the bolow example.. none of it is worinking for trimming white spaces

Expand|Select|Wrap|Line Numbers
  1.                        var a = String.trim("        Visit W3Schools ");
  2.                         alert(a)
  3.  
  4.  
  5.                         var sMyVar = new String (" testing trim ");
  6.                         alert(sMyVar.trim());
  7.  
  8.  
  9.                         var str = "    blah blah   ";
  10.                         var trimmed = str.replace(/^\s+|\s+$/g, '') ;                        
  11.                         alert(trimmed);
  12.                         alert(trimmed.value.length);
  13.                         q=str.trim();
  14.                         alert(q);
  15.                         alert("'" + str.trim() + "'");
all my need is to take off white spaces before and after a string but not inbetween a string.. ie.,
'' babe babe " should be ''babe babe"......

any help..
thanks in advance..
regards.
aswath.n.s
(knowledge is power)
Mar 25 '08 #2
gits
5,390 Recognized Expert Moderator Expert
it works - just use:

Expand|Select|Wrap|Line Numbers
  1. alert(trimmed.length);
kind regards
Mar 25 '08 #3
gits
5,390 Recognized Expert Moderator Expert
threads merged - since they cover the same topic ... please don't multipost the same questions ...

kind regards
Mar 25 '08 #4
acoder
16,027 Recognized Expert Moderator MVP
Just a note that JavaScript strings don't have a trim() method, though you can add it using String.prototyp e.
Mar 25 '08 #5
mrhoo
428 Contributor
this method removes leading and trailing whitespace from a string.
The second replace replaces multiple consecutive spaces (but not tabs or newlines) with single spaces-
take it out if you don't want that behavior.

Expand|Select|Wrap|Line Numbers
  1. String.prototype.clean:function(){
  2.     var str= this.replace(/(^\s+)|(\s+$)/g,'');
  3.     return str.replace(/ {2,}/g,' ');
  4. }
Mar 25 '08 #6

Sign in to post your reply or Sign up for a free account.

Similar topics

2
1170
by: RobG | last post by:
There is an interseting examination of varions trim functions here: <URL: http://blog.stevenlevithan.com/archives/faster-trim-javascript > The best all-round function seems to be trim3 when strings have lots of leading and trailing whitespace, which is when other functions slow down and speed is of most importance. --
0
8189
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
8356
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8497
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7184
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6118
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4089
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2621
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1803
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1500
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.