Difference between revisions of "Removing Special Characters"

From SmartWiki
Jump to: navigation, search
Line 6: Line 6:
  
 
==Procedure:==
 
==Procedure:==
1. Include the following code in the HTML Tag box of the [[Custom Fields|custom field]] you wish to restrict:
+
Include the following code in the HTML Tag box of the [[Custom Fields|custom field]] you wish to restrict:
  
 
  onchange="javascript:this.value=this.value.replace(/['''''character set''''']/g,' '''replacement character''' ');"
 
  onchange="javascript:this.value=this.value.replace(/['''''character set''''']/g,' '''replacement character''' ');"
Line 24: Line 24:
  
 
==Examples==
 
==Examples==
 +
'''1. To remove all & ~ ! @ # $ % ^ & * ( ) + " and ' characters and replace them with an underscore (_) actively while typing the text.
 
<pre>
 
<pre>
 
onkeyup="javascript:this.value=this.value.replace(/[\W]/g,'_');"
 
onkeyup="javascript:this.value=this.value.replace(/[\W]/g,'_');"
 
</pre>
 
</pre>
  
The example above will remove all & ~ ! @ # $ % ^ & * ( ) + " and ' characters and replace them with an underscore (_). If you would rather simple remove the characters you should use the following as the last line of the function:
+
 
 
+
'''2. After user has entered text and clicked away from the field, the following code will look for " and ' quotes and replace them with an underscore (_).
 +
<pre>
 +
onchange="javascript:this.value=this.value.replace(/['\''&'\"']/g,'_');"
 +
</pre>
 +
 
 +
'''3. To restrict user to only enter Integer numbers write this code in the HTML tag box.
 +
<pre>
 +
onkeyup="javascript:this.value=this.value.replace(/[^\d]/g,'');"
 +
</pre>
  
 
[[Category:Custom Fields]][[Category:JavaScript Examples]]
 
[[Category:Custom Fields]][[Category:JavaScript Examples]]

Revision as of 12:52, 24 April 2009

The following technique can be used to prevent a user from entering special characters in designated form fields.

Special characters can cause problems, particularly when the data is exported to other applications.

For example, if you wish to export the data to Microsoft Excel, any text fields with ampersands (&) or quotation marks (" or ') often cause formatting issues for Excel.


Procedure:

Include the following code in the HTML Tag box of the custom field you wish to restrict:

onchange="javascript:this.value=this.value.replace(/[character set]/g,' replacement character ');"

where character set defines which characters you want to remove, and replacement character defines what you want the special characters replaced with.

If you want the replacement to happen actively while the user is typing into the field use onKeyup instead of onChange.


Options

For Character set you can use

  • \W
  • \'
  • \"
  • \d


Examples

1. To remove all & ~ ! @ # $ % ^ & * ( ) + " and ' characters and replace them with an underscore (_) actively while typing the text.

onkeyup="javascript:this.value=this.value.replace(/[\W]/g,'_');"


2. After user has entered text and clicked away from the field, the following code will look for " and ' quotes and replace them with an underscore (_).

onchange="javascript:this.value=this.value.replace(/['\''&'\"']/g,'_');"

3. To restrict user to only enter Integer numbers write this code in the HTML tag box.

onkeyup="javascript:this.value=this.value.replace(/[^\d]/g,'');"