Add white space using RegEx

This is a discussion on "Add white space using RegEx" within the JavaScript Forum section. This forum, and the thread "Add white space using RegEx are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > JavaScript Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Feb 8th, 2008, 00:50
New Member
Join Date: Nov 2007
Location: USA
Age: 35
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Add white space using RegEx

I have a string: 1,2,3,4,5
I need it to look like this: 1, 2, 3, 4, 5

How can i do it with Regex?

Thank you
Reply With Quote

  #2 (permalink)  
Old Feb 8th, 2008, 01:07
Up'n'Coming Member
Join Date: May 2007
Location: northern nsw, au
Age: 27
Posts: 76
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Add white space using RegEx

\s ?
Reply With Quote
  #3 (permalink)  
Old Feb 8th, 2008, 03:30
Rakuli's Avatar
SuperMember

SuperMember
Join Date: Sep 2007
Location: Australia
Age: 24
Posts: 956
Blog Entries: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Add white space using RegEx

If you know it will be as simple as that you have a couple of options. You can use Split to split on the commas.

Code: Select all
var str = '1,2,3,4,5';

str = str.split(',');
var newstr = '';
for (i=0; i< str.length; i++)
{
       newstr += str[i] + ' ';
       if (i < str.length -1)
        newstr += ',';
}
Or use the replace and catch the patterns

Code: Select all
var str = '1,2,3,4,5';

str = str.replace(/([1-9])([,])+/g, '$1$2 ');
Last Blog Entry: The wannabe juggler's quest (Oct 27th, 2007)
Reply With Quote
Reply

Thread Tools

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
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
ie6 white space under div AndrewChip Web Page Design 1 Jun 11th, 2008 13:15
Big white space mikemay123 Web Page Design 5 Nov 6th, 2007 00:30
Removing white space from right & buttom Cougar Web Page Design 12 Nov 5th, 2007 19:45
[SOLVED] white-space mcdanielnc89 Web Page Design 5 Oct 8th, 2007 16:48
white space at top of page mdb01 Web Page Design 2 Nov 26th, 2006 21:39


All times are GMT. The time now is 01:19.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43