How to test a string for invalid chars ?

This is a discussion on How to test a string for invalid chars ? within the PHP Language forums, part of the PHP Programming Forums category; I think I am having a big blind-spot day. How does one test a form-sent string for any ...


Go Back   Usenet Forums > PHP Programming Forums > PHP Language

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 11-04-2004
Pjotr Wedersteers
 
Posts: n/a
Default How to test a string for invalid chars ?

I think I am having a big blind-spot day. How does one test a form-sent
string for any disallowed characters again ? I want only a.z,A..Z,0..9,- and
_ in the input... Thanks.
Pjotr

--
The day Microsoft starts making stuff that does not suck will undoubtedly be
the day they start producing vacuum cleaners


Reply With Quote
  #2 (permalink)  
Old 11-04-2004
Thomas Mlynarczyk
 
Posts: n/a
Default Re: How to test a string for invalid chars ?

Also sprach Pjotr Wedersteers:

> I think I am having a big blind-spot day. How does one test a
> form-sent string for any disallowed characters again ? I want only
> a.z,A..Z,0..9,- and _ in the input... Thanks.


if(!preg_match('/^[a-zA-Z0-9_-]*$/', $input)) {
echo 'Invalid input!';
}
else {
echo 'Well done!';
}



Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
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

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 09:13 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0