Re: [OT] Regular Expressions

This WebDNA talk-list message is from

2003


It keeps the original formatting.
numero = 49877
interpreted = N
texte = Clint Davis wrote: > I'm trying to use a regular expression in a javascript to test an email > input field in a form like this: > > var goodEMAIL = /^([a-zA-Z0-9_.-])+@(([a-zA-Z0-9-])+.)+([a-zA-Z0-9]{2,4})+$/ > You will need to escape the period when it does not appear inside a set [] since it is otherwise a match any single character term. Try this instead:var goodEMAIL = /^([a-zA-Z0-9_.-])+@(([a-zA-Z0-9-])+\.)+([a-zA-Z0-9]{2,4})+$/> I thought this script was supposed to act as specified above, but I'm able > to enter something like a@aaaa with no problems, but a@a.a fails. The 2-4 > character check at the end doesn't appear to be working. I'm sure one of the > veteran C programmers can answer this with no problem. > The reason that a@a.a fails is that the 2-4 check _is_ working; you cannot have fewer than two characters in your TLD (corresponding to the ISO country codes). However, I think the {2,4} should be changed to {2,} since there may now be domains longer than 4 characters (e.g. .museum). The reason that a@aaaa is working is that you are actually matching it like this: (a)@(aa)(aa)because you didn't escape the period.HTHJohn-- John Peacock Director of Information Research and Technology Rowman & Littlefield Publishing Group 4501 Forbes Boulevard Suite H Lanham, MD 20706 301-459-3366 x.5010 fax 301-429-5748 ------------------------------------------------------------- This message is sent to you because you are subscribed to the mailing list . To unsubscribe, E-mail to: To switch to the DIGEST mode, E-mail to Web Archive of this list is at: http://webdna.smithmicro.com/ Associated Messages, from the most recent to the oldest:

    
  1. Re: [OT] Regular Expressions (Clint Davis 2003)
  2. Re: [OT] Regular Expressions (John Peacock 2003)
  3. [OT] Regular Expressions (Clint Davis 2003)
Clint Davis wrote: > I'm trying to use a regular expression in a javascript to test an email > input field in a form like this: > > var goodEMAIL = /^([a-zA-Z0-9_.-])+@(([a-zA-Z0-9-])+.)+([a-zA-Z0-9]{2,4})+$/ > You will need to escape the period when it does not appear inside a set [] since it is otherwise a match any single character term. Try this instead:var goodEMAIL = /^([a-zA-Z0-9_.-])+@(([a-zA-Z0-9-])+\.)+([a-zA-Z0-9]{2,4})+$/> I thought this script was supposed to act as specified above, but I'm able > to enter something like a@aaaa with no problems, but a@a.a fails. The 2-4 > character check at the end doesn't appear to be working. I'm sure one of the > veteran C programmers can answer this with no problem. > The reason that a@a.a fails is that the 2-4 check _is_ working; you cannot have fewer than two characters in your TLD (corresponding to the ISO country codes). However, I think the {2,4} should be changed to {2,} since there may now be domains longer than 4 characters (e.g. .museum). The reason that a@aaaa is working is that you are actually matching it like this: (a)@(aa)(aa)because you didn't escape the period.HTHJohn-- John Peacock Director of Information Research and Technology Rowman & Littlefield Publishing Group 4501 Forbes Boulevard Suite H Lanham, MD 20706 301-459-3366 x.5010 fax 301-429-5748 ------------------------------------------------------------- This message is sent to you because you are subscribed to the mailing list . To unsubscribe, E-mail to: To switch to the DIGEST mode, E-mail to Web Archive of this list is at: http://webdna.smithmicro.com/ John Peacock

DOWNLOAD WEBDNA NOW!

Top Articles:

Talk List

The WebDNA community talk-list is the best place to get some help: several hundred extremely proficient programmers with an excellent knowledge of WebDNA and an excellent spirit will deliver all the tips and tricks you can imagine...

Related Readings:

question: search return in order (1997) Exclamation point (1997) Include a big block of text (1997) Number of Feilds Passed to [append] (2000) WebMerchant 1.6 and https (1997) Search in 2 or more catalogs (1997) WebCat2b14MacPlugIn - [include] doesn't hide the search string (1997) NT considerations (1997) Webcat causing crashes left and right! (1997) [ELSEIF] was hideif [x]=1,2,3..: (2003) [defined]ish (1997) [WebDNA] TCPCONNECT & Timeout (2015) What am I missing (1997) Please help (2004) WebCat2b15MacPlugin - showing [math] (1997) Re2: frames & carts (1997) Re[4]: Problem with new formvariables (2000) problems with 2 tags (1997) Giving out error pages (1997) [SearchString] usage (1997)