Click to See Complete Forum and Search --> : is it possble to strip spaces from a string?
damon2003
12-10-2003, 06:46 AM
Hi,
I have some strings containing several words, with spaces in between them. Is it possible to strip out the space?
thanks
AdamBrill
12-10-2003, 07:00 AM
Try this:
<script type="text/javascript">
str = "asdfasd asdfasdf asafsd";
str = str.replace(/ /g,'');
alert(str);
</script>
damon2003
12-10-2003, 07:01 AM
thanks,
is that known as a regular expression?
AdamBrill
12-10-2003, 07:10 AM
Yes it is, but it is about as simple as they can possibly be. ;)
If you would like more information about RegEx, check out this link: http://devedge.netscape.com/library/manuals/2000/javascript/1.3/guide/regexp.html