Here’s how to remove all whitespaces (leading, trailing and in between) in a textbox using JavaScript
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Remove Whitespaces using JavaScript by DevCurry.com</title>
<script type="text/javascript">
function removeWhitespaces() {
var txtbox = document.getElementById('txtOne');
txtbox.value = txtbox.value.replace(/\s/g, "");
}
</script>
</head>
<body>
<input id="txtOne" type="text" /><br />
<input id="btnRemoveWs" type="submit"
value="Remove Whitespaces" onclick="removeWhitespaces()" />
</body>
</html>
As you can see, we are using a simple regular expression \s/g which removes all whitespaces. The "g" stands for "global" which replaces all white space matches (front, trailing and in between).
Before
After
See a Live Demo
Tweet
3 comments:
Wonderful blog.... nice info to know.... you also provide php coding?
thanks in advance for all valuable info to read....
Sorry I would love to post PHP stuff on this blog, but unfortunately I am not a PHP guy! Hope I find someone who is interested in sharing his/her php knowledge on this blog.
GREAT!!!! THANK YOU SOOOO MUCH!!!
Post a Comment