|
Posted by lorento on 02/16/07 10:35
$patterns = "/[^a-z0-9.-_]/i";
if (preg_match ($patterns, $word))
echo "not allowed";
else
echo "allowed";
--
http://ascii.mastervb.net -- ASCII Art Generator
http://anagram.mastervb.net -- Anagram Generator
http://www.mastervb.net/phpbooks/ -- Best PHP MySQL Books
On Feb 16, 5:19 pm, raj <r...@nospam.com> wrote:
> Hi,
>
> Please can someone help regarding providing a regular expression for entering
> a set of characters with letters, numbers, periods (.), hyphens (-), or
> underscores (_) only.
>
> I've got as far as this:
>
> $pattern="^([_a-z0-9-]+)(\.[_a-z0-9-])$";
>
> Thank you in advance.
>
> Kind regards,
>
> Raj (newbie)
Navigation:
[Reply to this message]
|