[Javascript] regular expressions for Javascript

Shawn Milo milo at linuxmail.org
Thu May 13 14:39:52 CDT 2004


Thanks again.  Fixed made. 
Overhaul in progress.  At least, overhaul of stated
mission from "Primer" to "Examples".

Shawn


----- Original Message -----
From: Flavio Gomes <flavio at economisa.com.br>
Date: Thu, 13 May 2004 16:29:13 -0300
To: "[JavaScript List]" <javascript at LaTech.edu>
Subject: Re: [Javascript] regular expressions for Javascript

> 
> Yeah Shawn, it's as I do: I never review my own stuff..
> 
> More "comments":
> 
> /[a-z]/ Matches a character that is a letter.  <== That's Ok
> 
> /[^a-z]/ Matches a character that is a letter. <== You repeated o.O
> 
> /[0-9]/ Matches a character that is not a number. <== It matches 
> numbers  ( \D or [^0-9] )
> 
> 
> -- 
> Flavio Gomes
> flavio at economisa.com.br
> 
> 
> Shawn Milo wrote:
> 
> >Flavio,
> >
> >Great catches, thanks.  They have been corrected.
> >
> >This is why you don't let the writer proofread his own work.  ;o)
> >
> >Shawn
> >
> ><snip>
> >  
> >
> >>two Comments:
> >>
> >>"?" 
> >>  => Forgot to explain in Regex Basics
> >>"/[a-z]/ Matches a character that is not a letter."
> >>  => Is it right?
> >>
> >>-- 
> >>Flavio Gomes
> >>flavio at economisa.com.br
> >>    
> >>
> ><snip> 
> >
> >  
> >
> _______________________________________________
> Javascript mailing list
> Javascript at LaTech.edu
> https://lists.LaTech.edu/mailman/listinfo/javascript




More information about the Javascript mailing list