Web Wiz - Green Windows Web Hosting

  New Posts New Posts RSS Feed - Help with JavaScript
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

Help with JavaScript

 Post Reply Post Reply
Author
csosa View Drop Down
Newbie
Newbie
Avatar

Joined: 05 March 2002
Location: Venezuela
Status: Offline
Points: 18
Post Options Post Options   Thanks (0) Thanks(0)   Quote csosa Quote  Post ReplyReply Direct Link To This Post Topic: Help with JavaScript
    Posted: 25 June 2003 at 12:33pm

I'm trying to modify a javascript in the forum but I need some help.

this is what I have

<script language="javaScript">

var test = "This is a Test";

var newString = test.replace(" ","");

</script>

I'm trying to delete the white spaces in the variable test but doing what I did it only deletes the first white space but the other ones don't go. so currently the newString variable comes with (Thisis a Test). How can I delete all the other blank spaces??

Thanks

Carlos

Back to Top
Commander View Drop Down
Groupie
Groupie


Joined: 27 September 2002
Location: Canada
Status: Offline
Points: 85
Post Options Post Options   Thanks (0) Thanks(0)   Quote Commander Quote  Post ReplyReply Direct Link To This Post Posted: 28 June 2003 at 4:10pm
<SCRIPT LANGUAGE="JavaScript"> 
var test = "This is a Test";
var index = test.indexOf(" ");

while (index != -1) {
test = test.replace(" ", "");
index = test.indexOf(" ", index + 1);
}
alert(test);
</script>

 i took this aproach because replace() only seemed 2 replace only the first char..
a little late 4 a reply, but hope this helps
Back to Top
 Post Reply Post Reply

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.08
Copyright ©2001-2026 Web Wiz Ltd.


Become a Fan on Facebook Follow us on X Connect with us on LinkedIn Web Wiz Blogs
About Web Wiz | Contact Web Wiz | Terms & Conditions | Cookies | Privacy Notice

Web Wiz is the trading name of Web Wiz Ltd. Company registration No. 05977755. Registered in England and Wales.
Registered office: Web Wiz Ltd, Unit 18, The Glenmore Centre, Fancy Road, Poole, Dorset, BH12 4FB, UK.

Prices exclude VAT at 20% unless otherwise stated. VAT No. GB988999105 - $, € prices shown as a guideline only.

Copyright ©2001-2026 Web Wiz Ltd. All rights reserved.