: discussion@acfug.org
Subject: RE: re[2]: [ACFUG Discuss] Regex help
Yes, Ben Forta did "Teach Yourself Regular Expressions In 10 Minutes"
and I
can recommend it. There are also many resources available online. Just
google "regular expressions" and the first few that come up look quite
rce listing many of them
(someday),
if someone doesn't already know of one.
/charlie
http://www.carehart.org/blog/
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dean H.
Saxe
Sent: Thursday, August 10, 2006 11:09 AM
To: discussion@acfug.org
Subjec
y, August 10, 2006 11:09 AM
To: discussion@acfug.org
Subject: Re: re[2]: [ACFUG Discuss] Regex help
Jason,
First start with one of the RegEx in 10 minutes a day type books. I think
there is one from Sams Publishing. If you want to be a serious geek,
Regular Expressions by Jeffrey Friedl from
.org
Subject: Re: re[2]: [ACFUG
Discuss] Regex help
I think what Dean is
suggesting here is that it is wiser to validate both from the server and the
client. The server validation being more reliable than the client.
This is a well adopted paradigm and Dean helps us remember this.
Also, M
Thanks
JLW
From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]] On Behalf Of Teddy
Payne
Sent: Monday, August 07, 2006
15:52
To: discussion@acfug.org
Subject: Re: re[2]: [ACFUG
Discuss] Regex help
I think what Dean is
suggesting here is that it is wiser to validate both from the serv
W
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Teddy
Payne
Sent: Monday, August 07, 2006 15:52
To: discussion@acfug.org
Subject: Re: re[2]: [ACFUG Discuss] Regex help
I think what Dean is suggesting here is that it is wiser to
validate both from the server and the clie
: Re: re[2]: [ACFUG
Discuss] Regex help
I think what Dean is
suggesting here is that it is wiser to validate both from the server and the
client. The server validation being more reliable than the client.
This is a well adopted paradigm and Dean helps us remember this.
Also, MITM = Man In
I think what Dean is suggesting here is that it is wiser to validate both from the server and the client. The server validation being more reliable than the client. This is a well adopted paradigm and Dean helps us remember this.
Also, MITM = Man In The Middle, which is a type of attack that ca
Say you want to find your string and its 10 to 12 characters in the
hexadecimal character set. You can validate your data with:
[A-F0-9]{10,12}
This will match any hexadecimal number with a minimum of 10 chars and
a maximum of 12. Its a positive way of doing data validation on your
strin