473,385 Members | 1,676 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Help with cleaning input text - removing control characters

I have an HTML form with a textarea input box. When the user conducts a
post request (e.g. clicks the submit button), an HTML preview page is
presented to them with the information they have filled out in the prior
page's form elements.

Naturally some users like to copy and paste text into the textarea box and
presumably do so from say a word processor program. Some Macintosh based
users I know of experience problems with foreign looking characters
appearing in the HTML output, i.e tiny square boxes. The server processing
their requests is PC/Microsoft Windows (2000) based.

To fix the problem, I know this is a matter of removing certain control
characters. I would like to write some client side Javascript validation
code to handle this.

The problem for me is two-fold. I do not have a Mac/PowerPC to use for
testing. I am not all that familiar with Macs or know what control
characters to screen for. (About the only thing I know is Mac and Windows
use different control character representations for line feeds or carriage
returns or both).

Can someone shed some light on this for me? For example, which characters
to look for in parsing strings, i.e. \n, \t, etc. Thanks.

--
Peter O'Reilly
Jul 23 '05 #1
8 14248
Peter O'Reilly wrote on 05 aug 2004 in comp.lang.javascript:
To fix the problem, I know this is a matter of removing certain control
characters. I would like to write some client side Javascript validation
code to handle this.

<input
onchange="this.value=this.value.replace(/[^a-z\d ]+/ig,'')"


removes anything that is not alphanumeric or space after loss of focus

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Jul 23 '05 #2
Evertjan. wrote:
Peter O'Reilly wrote on 05 aug 2004 in comp.lang.javascript:

To fix the problem, I know this is a matter of removing certain control
characters. I would like to write some client side Javascript validation
code to handle this.
<input
onchange="this.value=this.value.replace(/[^a-z\d ]+/ig,'')"


onchange="this.value=this.value.replace(/[^a-z\d ]+/ig,' ')"

Replace any character that is not a-z or a number with a space.
Better, no?
Mick

removes anything that is not alphanumeric or space after loss of focus

Jul 23 '05 #3
Mick White wrote:
Evertjan. wrote:
Peter O'Reilly wrote on 05 aug 2004 in comp.lang.javascript:

To fix the problem, I know this is a matter of removing certain control
characters. I would like to write some client side Javascript
validation
code to handle this.
<input
onchange="this.value=this.value.replace(/[^a-z\d ]+/ig,'')"

onchange="this.value=this.value.replace(/[^a-z\d ]+/ig,' ')"

Replace any character that is not a-z or a number with a space.
Better, no?
Mick


Oops, you're right, I didn't notice the space in your "not" character set.
Mick


removes anything that is not alphanumeric or space after loss of focus

Jul 23 '05 #4
Mick White wrote on 05 aug 2004 in comp.lang.javascript:
<input
onchange="this.value=this.value.replace(/[^a-z\d ]+/ig,'')"


onchange="this.value=this.value.replace(/[^a-z\d ]+/ig,' ')"

Replace any character that is not a-z or a number with a space.
Better, no?


Better, yes.
But not quite complete:

==============

Replace any group of characters that are
not a-z
or A-Z
or a number
or a space
with a space:

onchange="this.value=this.value.replace(/[^a-z\d ]+/ig,' ')"

[this will leave multiple spaces as they are,
but replace multiple repaceants with one space]

==============

Replace any character that is
not a-z
or A-Z
or a number
or a space
with a space:

onchange="this.value=this.value.replace(/[^a-z\d ]/ig,' ')"

[this will leave multiple spaces as they are,
and replace multiple repaceants with multiple spaces]
==============

Replace any group of characters that are
not a-z
or A-Z
or a number
with a space:

onchange="this.value=this.value.replace(/[^a-z\d]+/ig,' ')"

[this will replace multiple white space with one space,
and replace multiple repaceants with multiple spaces]

===============

not tested, beware of any silly mistake.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Jul 23 '05 #5
Evertjan & Mick,

Thank you both for the very helpful replies and code samples.

To be honest though, I am a little bit uncomfortable with the "what to
allow" approach. Don't get me wrong, your regular expressions are great, but
I'm afraid it may be a bit too aggressive in replacing text. For example,
consideration must be given for characters like !, @, #, $ ~ , etc. Of
course, those characters can always be added to the regular expression. I'm
afraid I will not think of all possible allowable characters.

Instead, a "what not to allow" approach would be most ideal,
e.g.specifically targeting those few characters to screen out. What those
characters are is a mystery to me.
Perhaps String.charCodeAt() approach is needed?

Thanks again/dank u wel.

--
Peter O'Reilly
Jul 23 '05 #6
Peter O'Reilly wrote on 05 aug 2004 in comp.lang.javascript:
Instead, a "what not to allow" approach would be most ideal,
e.g.specifically targeting those few characters to screen out. What
those characters are is a mystery to me.


If you do not know the character or it's ascii value or it's unicode value,
it will be very difficult to specify a positive exclusion, Peter.

onchange="this.value=this.value.replace(/[@\\\n\x08\x1b\u00A9]+/ig,' ')"

This will exclude:
The @
the \ itself (\\)
the linfeed char (\n)
the backspace (\x08 = hex 8)
the escape (\x21 = hex 1b = decimal 27)
the unicode copyright symbol (\u00A9 = ©)
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Jul 23 '05 #7
> If you do not know the character or it's ascii value or it's unicode
value,
it will be very difficult to specify a positive exclusion, Peter.


Evertjan, it's good to see that you are finally catching on. If someone
could shed some more insight into the original query, that would be great.
I'm sure someone else here must have experienced such problem and found a
solution for it.

In particular information on the character encoding issues or type(s) used
by English Macintosh users
(versus the IBM-PC/OEM ASCII character set I am accustomed to) would be
helpful.
--
Peter "UTF-8" O'Reilly
Jul 23 '05 #8
On Thu, 05 Aug 2004 16:33:49 +0000, Evertjan. wrote:
<input
onchange="this.value=this.value.replace(/[^a-z\d ]+/ig,'')"


Don't forget to perform this validation on the server side, too, for those
with JavaScript disabled in their browser.

La'ie Techie

Jul 23 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Greg Lindstrom | last post by:
Hello- I have a text file generated on a HP-9000 running HP-Unix with embedded control characters and would like to read it in, modify it, and write it out in PDF format. The new page character...
2
by: Paul M | last post by:
Hi there, i hope someone can help me out here.. I have a input screen where i want the user to enter text in 2 different languages, english and macedonian. How is it possible to make the...
1
by: Phil Amey | last post by:
In a web based form I am able to make sure that there is text in an input field but I want to restrict the user from using such characters as ~ # & ' How can I modify this JavaScript below to...
3
by: addi | last post by:
I'm looking to perform input validation on an HTML input text element; specifically, I'm looking to prevent anything other than numerical characters from being entered. I've got it working just...
3
by: Ali | last post by:
I have 3 html input tex in my asp.net form. Two of them are calling javascript client side to calculate the differnce of two dates and put the result into the third input text. i haven't include...
1
by: Fred Nelson | last post by:
Hi: I'm writing an error handling system for my vb.net windows application. I have an error trapping routine that is catching all unexpected errors, writing an entry in an sql database and...
11
by: Ron L | last post by:
I have a barcode scanner which uses a "keyboard wedge" program so that the data it scans comes through as if it was typed on a keyboard. I am trying to have the data in the barcode be displayed in...
2
by: =?Utf-8?B?R3VoYW5hdGg=?= | last post by:
Hi, In a web page we have many single line input text boxes inside table,which has the max length of 250 characters and few drop downs where auto post back property is true. When we provide 250...
2
by: Bazza Formez | last post by:
I have a bound field in a DetailsView control that displays free form description type data from my SQL database table (typical data is a couple of paragraphs of written product description being...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.