Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have tried:

preg_match("/^[a-zA-Z0-9]", $value)

but im doing something wrong i guess.

share|improve this question

4 Answers

up vote 23 down vote accepted

Try:

preg_match('/^[\w\d]$/', $string);

\w includes more than alphanumeric (it includes underscore), but includes all of \d.

Alternatives could be:

/^[a-zA-Z\d]+$/

... or even ...

/^[^\W_]+$/

HOWEVER, there is an even easier/faster way using inbuilt PHP functions, which execute faster than a RegEx, specifically ctype_alnum():

<?php
$strings = array('AbCd1zyZ9', 'foo!#$bar');
foreach ($strings as $testcase) {
    if (ctype_alnum($testcase)) {
        echo "The string $testcase consists of all letters or digits.\n";
    } else {
        echo "The string $testcase does not consist of all letters or digits.\n";
    }
}
?>

See here

share|improve this answer
[\w\d] is redundant - \w is enough since it already contains \d. – Tim Pietzcker Nov 14 '11 at 10:16
  • Missing end anchor $
  • Missing multiplier
  • Missing end delimiter

So it should fail anyway, but if it may work, it matches against just one digit at the beginning of the string.

/^[a-z0-9]+$/i
share|improve this answer

You left off the / (pattern delimiter) and $ (match end string).

preg_match("/^[a-zA-Z0-9]+$/", $value)
share|improve this answer

try this way .eregi("[^A-Za-z0-9.]", $value)

share|improve this answer
ereg/eregi are old functions. Use preg_match instead. Also, you should add the i identifier so letters are case insensitive. – ChrisH Apr 20 '12 at 9:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.