473,398 Members | 2,335 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,398 software developers and data experts.

Email validator not allowing '.' in email address before '@'

Sorry I crossposted this to java group. Didn't know distinction
between Java & Javascript

Hi,
I'm not a Java script programmer but have this web page with a form
form that
includes a field to input an email address. My problem is that the
validator won't allow addresses that include a '.' before the @ sign to

be entered (such as john....@doman.com)
It seems like (3>intIsDOT-intIsAT) || (4>intLengthA-intIsDOT)){
may be causing the problem. Anyone have an idea that will allow me to
screen out invalid addresses but still allow a . before the @? I would

like to continue using the same script, only modified to allow the '.'
if possible.
Here's the portion of the script that seems to be involved:
function fnEmailValidation(oTag){
var intLengthA= oTag.value.length;
var intIsAT = oTag.value.indexOf("@");
var intIsDOT = oTag.value.indexOf(".");
if (intLengthA<6 || intIsAT<1 ||
(3>intIsDOT-intIsAT) ||
(4>intLengthA-intIsDOT)){
return false;
}
var
strTextAfterDot=oTag.value.substring(intIsDOT+1,in tLengthA);
intLengthA= strTextAfterDot.length;
for (var x=0;x<intLengthA;x++){
if
(isNaN(strTextAfterDot.substring(x,x+1))==true) return true;
}
return false;
}

Dec 22 '05 #1
5 1718
gu*****@googlemail.com wrote:
[...]
I'm not a Java script programmer
I am not either, since there is no "Java script".
but have this web page with a form form that includes a field to input an
email address. My problem is that the validator won't allow addresses
that include a '.' before the @ sign to

be entered (such as john....@doman.com)
Your example address does not conform to RFC2822, the algorithm would
rightfully refuse it.
It seems like (3>intIsDOT-intIsAT) || (4>intLengthA-intIsDOT)){
may be causing the problem. Anyone have an idea that will allow me to
screen out invalid addresses but still allow a . before the @? [...]
<http://groups.google.com/groups?q=valid+%22mail+address%22+group%3Acomp.lan g.javascript&start=0&scoring=d&>
[overly complicated inefficient code that I refuse to review]


Ever heard of Regular Expressions? Supported since IE3 (August 1996),
NN4 (June 1997).
PointedEars
Dec 22 '05 #2
Thanks, PointedEars. No, I haven't heard of regular expressions. This
isn't my script and it does seem more complicated than other email
validator scripts I've seen on the web. I'm not a web programmer, I
just generally modify existing stuff to come up with what I want if I
need to do something I don't know how to do.

Not being a programmer, I wouldn't necessarily be able to distinguish
the necessary from the unnecessarily complicated. My attempts at
modifying the script have all resulted in the form accepting ANYTHING
in the email address field, unfortunately.

Thanks for the links. I'll do some more looking, and maybe your
reference to "regular expressions" will lead me to something useful.

No big deal. Someone's going to take care of this problem, even if it
isn't me. It's not exactly my webpage, after all.

Thanks again.

Dec 22 '05 #3
<gu*****@googlemail.com> wrote in message
news:11*********************@g43g2000cwa.googlegro ups.com...
Sorry I crossposted this to java group. Didn't know distinction
between Java & Javascript

Hi,
I'm not a Java script programmer but have this web page with a form
form that
includes a field to input an email address. My problem is that the
validator won't allow addresses that include a '.' before the @ sign to

be entered (such as john....@doman.com)
It seems like (3>intIsDOT-intIsAT) || (4>intLengthA-intIsDOT)){
may be causing the problem. Anyone have an idea that will allow me to
screen out invalid addresses but still allow a . before the @? I would

like to continue using the same script, only modified to allow the '.'
if possible.
Here's the portion of the script that seems to be involved:
function fnEmailValidation(oTag){
var intLengthA= oTag.value.length;
var intIsAT = oTag.value.indexOf("@");
var intIsDOT = oTag.value.indexOf(".");
if (intLengthA<6 || intIsAT<1 ||
(3>intIsDOT-intIsAT) ||
(4>intLengthA-intIsDOT)){
return false;
}
var
strTextAfterDot=oTag.value.substring(intIsDOT+1,in tLengthA);
intLengthA= strTextAfterDot.length;
for (var x=0;x<intLengthA;x++){
if
(isNaN(strTextAfterDot.substring(x,x+1))==true) return true;
}
return false;
}


Will this help?

<html>
<head>
<title>EmailValidation.htm</title>
<script type="text/javascript">
function fnFormValidation(that) {
var oTag = that.Email;
if (!fnEmailValidation(oTag)) return false;
return true;
}
function fnEmailValidation(oTag) {
var regx = /^[\w-\.]{1,}\@([\da-zA-Z-]{1,}\.){1,}[\da-zA-Z-]{2,3}$/;
if (oTag.value.length == 0) {
alert("Email is missing!");
} else if (!regx.test(oTag.value)) {
alert("Email is invalid!");
}
}
</script>
</head>
<body>
<form name="form1" onsubmit="return fnFormValidation(this)">
<input type="text" name="Email" size="50" maxlength="50">
<input type="submit" value="Submit">
</form>
</body>
</html>
Dec 22 '05 #4
It just might. Thanks. I'll check it out and see.

Dec 22 '05 #5
JRS: In article <ZZ******************************@comcast.com>, dated
Thu, 22 Dec 2005 14:04:15 local, seen in news:comp.lang.javascript,
McKirahan <Ne**@McKirahan.com> posted :
Will this help? function fnFormValidation(that) {
var oTag = that.Email;
if (!fnEmailValidation(oTag)) return false;
return true;
}
function fnEmailValidation(oTag) {
var regx = /^[\w-\.]{1,}\@([\da-zA-Z-]{1,}\.){1,}[\da-zA-Z-]{2,3}$/;
if (oTag.value.length == 0) {
alert("Email is missing!");
} else if (!regx.test(oTag.value)) {
alert("Email is invalid!");
}
}


Reposting stale code that you've found somewhere, or writing code that
looks like that, is no help to anyone.

That code only allows TLDs of two or three characters.

It also does not allow on the left at least one character, $, which I
know to be valid.

Normally, one would expect a validation function to return a value.

OP : see <URL:http://www.merlyn.demon.co.uk/js-valid.htm>.

--
© John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v4.00 IE 4 ©
<URL:http://www.jibbering.com/faq/> JL/RC: FAQ of news:comp.lang.javascript
<URL:http://www.merlyn.demon.co.uk/js-index.htm> jscr maths, dates, sources.
<URL:http://www.merlyn.demon.co.uk/> TP/BP/Delphi/jscr/&c, FAQ items, links.
Dec 23 '05 #6

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

Similar topics

1
by: Bryan Hahn | last post by:
I would like to open our firewall to allow traffic from the w3c validator in our development enviornment. I tried to open port 80 from 18.29.1.50 (validator.w3.org), but that didn't do the trick....
117
by: Steevo | last post by:
Any suggestions as to the best programs for cloaking email addresses? Many thanks -- Steevo
13
by: Niki Kovacs | last post by:
Hi, I'm an Austrian writer living in Montpezat (South France). I just installed a local W3C validator on my machine (Slackware 10.1, local Apache server). It's accessible as...
7
by: ad | last post by:
Hi, As title, How to determine if a string is an EMail account?
12
by: Amir Ghezelbash | last post by:
Hello every body I had a question I am involved in a project where I need to verify the user's email address by sending them an email and asking them to click on a link. now I have done this but...
2
by: Paul Proefrock | last post by:
I am generating an asp page with information on our organizations annual calendar. One of the items presented is the contacts email address. It does appear as a hyperlink but when you click on it,...
2
by: gdaalf | last post by:
Folks, Maybe a newbie issue, but I do not quite understand why http://test.aces.uiuc.edu/news/RSS/AcesNewsRSS1.xml will not validate on RSS validator (http://validator.w3.org/feed/). It falls...
23
by: codefire | last post by:
Hi, I am trying to get a regexp to validate email addresses but can't get it quite right. The problem is I can't quite find the regexp to deal with ignoring the case james..kirk@fred.com, which...
5
by: Ganesh | last post by:
Hi There, I need to validate email address with regular expression control, i tried something like this ^+*@*\.*$ but i need to validate even if it is blank, it should say invalid email,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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
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,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.