dbTalk Databases Forums  

Looking for an email/website validator, FM7

comp.databases.filemaker comp.databases.filemaker


Discuss Looking for an email/website validator, FM7 in the comp.databases.filemaker forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
audleman@quasika.net
 
Posts: n/a

Default Looking for an email/website validator, FM7 - 07-20-2005 , 11:49 AM






Are there any (free) plug-ins/scripts to validate email addresses and
websites available for FM7?

Thanks,
Kevin


Reply With Quote
  #2  
Old   
audleman@quasika.net
 
Posts: n/a

Default Re: Looking for an email/website validator, FM7 - 07-21-2005 , 05:07 PM






I'm looking for something a bit simpler. All I want to do is validate
the email and URL a user types into the 'email' and 'website' fields.
Nothing fancy, just something that will catch the more egregious data
entry errors.

Has anyone written a Filemaker script to take care of this?

Kevin


Reply With Quote
  #3  
Old   
Matt Wills
 
Posts: n/a

Default Re: Looking for an email/website validator, FM7 - 07-21-2005 , 06:29 PM



audleman (AT) quasika (DOT) net wrote:

Quote:
I'm looking for something a bit simpler. All I want to do is validate
the email and URL a user types into the 'email' and 'website' fields.
Nothing fancy, just something that will catch the more egregious data
entry errors.

Has anyone written a Filemaker script to take care of this?

Kevin
Are you saying you want only to check for an @ symbol and and an
acceptable TLD on an email address, the proper configuration for a website
URL?

Matt


Reply With Quote
  #4  
Old   
Helpful Harry
 
Posts: n/a

Default Re: Looking for an email/website validator, FM7 - 07-21-2005 , 08:11 PM



In article <1121980076.501188.197500 (AT) z14g2000cwz (DOT) googlegroups.com>,
"audleman (AT) quasika (DOT) net" <audleman (AT) quasika (DOT) net> wrote:

Quote:
I'm looking for something a bit simpler. All I want to do is validate
the email and URL a user types into the 'email' and 'website' fields.
Nothing fancy, just something that will catch the more egregious data
entry errors.

Has anyone written a Filemaker script to take care of this?
You don't need a script, just use the field's Validation options and
check for illegal characters (eg. spaces, tabs, returns) and for the
necessary legal characters (e.g an @ in the email address).
eg.
PatternCount(Email, " ") = 0
and PatternCount(Email, "¶") = 0 <-- the Return character
and PatternCount(Email, "@") = 1

There's no way of actually checking that the data entered is a proper
valid email or web site address though.

Helpful Harry
Hopefully helping harassed humans happily handle handiwork hardships ;o)


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.