Results 1 to 3 of 3

Thread: How to eliminate blank spaces from a character or numeric filed

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Jan 2002
    Location
    Windsor
    Posts
    100

    How to eliminate blank spaces from a character or numeric filed

    Hi,

    I like to eliminate blank spaces from a character or numeric filed. Is there any function like Trim() to get rid of all the blank spaces from the right or left site of the filed by using JavaScript?

    objValue =" ABC " or objValue = " 1233 "

    FieldLength =anyFunctionName(eval(objValue.value.length))


    Thanks,

    Naci

  2. #2
    Evil Genius alex_read's Avatar
    Join Date
    May 2000
    Location
    Espoo, Finland
    Posts
    5,538
    You have to use the string object, then call a regular expression on it like the following :

    Code:
    <HTML>
    
    <HEAD>
    
    	<SCRIPT Language="Javascript">
    	<!--
    
    	function TrimIt()
    	{
    		var strobjTextBox;
    
    		strobjTextBox = document.all.textbox1.value;
    		alert ("The Trimmed Text is :" + "'" + 
    		strobjTextBox.replace(/^\s+|\s+$/g, "") + "'");
    	}
    
    	-->
    	</SCRIPT>
    
    </HEAD>
    
    <BODY>
    
    	<INPUT Type="text" id="textbox1">
    
    	<BR><BR>
    
    	<INPUT Type="Button" id="cmdTrimTxt" Value="Click To Trim Text!" 
    	onclick="TrimIt()">
    	
    </BODY>
    <HTML>

    Please rate this post if it was useful for you!
    Please try to search before creating a new post,
    Please format code using [ code ][ /code ], and
    Post sample code, error details & problem details

  3. #3
    Evil Genius alex_read's Avatar
    Join Date
    May 2000
    Location
    Espoo, Finland
    Posts
    5,538
    btw, there is a different forum for javascript questions for another time

    Please rate this post if it was useful for you!
    Please try to search before creating a new post,
    Please format code using [ code ][ /code ], and
    Post sample code, error details & problem details

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width