vote up 0 vote down star
1

I want to check if a variable has a number in it, I just want to see if there is one I don't care if it has any thing else in it like so:

"abc" - false
"!./#()" - false
"!./#()abc" - false
"123" - true
"abc123" - true
"!./#()123" - true
"abc !./#() 123" -true

There are easy ways of doing this if you want to know that is all numbers but not if it just has one. Thanks for your help.

flag

75% accept rate

6 Answers

vote up 6 vote down check

You can use the strcspn function:

if (strcspn($_REQUEST['q'], '0123456789') != strlen($_REQUEST['q']))
  echo "true";
else
  echo "false";

strcspn returns the length of the part that does not contain any integers. We compare that with the string length, and if they differ, then there must have been an integer.

There is no need to invoke the regular expression engine for this.

link|flag
1  
I benchmarked this one, it's about 80 percent faster than regular expressions. – The Pixel Developer May 23 at 15:33
1  
Nice -- I didn't even benchmark it, I just figured that there must be a relatively simple string function I could use instead of pulling out the big hammer (regexps)... – Martin Geisler May 23 at 15:42
That function is a new one on me, a pity it has such a horrific name (what does it stand for?) it's so close to it's oppose: strspn. IMO this code is harder to understand than the regex, which takes some doing ;) – therefromhere May 23 at 17:42
Thanks for the information, I have used the functions before but not in this way. I like anything that runs faster! – Scott May 23 at 20:24
I believe the name strcspn is a short for "string complement span" or something like that, and what they really mean is "string length of complement span" :-) – Martin Geisler May 24 at 1:12
vote up 3 vote down
$result = preg_match("/\\d/", $yourString) > 0;
link|flag
Thanks, I tried it before but it didn't work for some reason. – Scott May 23 at 15:26
1  
You might want to escape the backslash properly -- here you are relying on the fact that \d is not a valid escape sequence, and therefore it will be treated as if you had written \\d. – Martin Geisler May 23 at 15:29
You are right about the escaping (I was not relying on something though, I just simply forgot). Corrected, thanks for the hint. – Tomalak May 23 at 16:06
+1 because it's easier to read than the strcspn version – therefromhere May 25 at 15:36
@therefromhere: Ironically, this has even been down-voted. Though I would expect the speed advantage of strcspn() not to be relevant in 99% of the use cases. – Tomalak May 25 at 17:40
vote up 0 vote down

See Tomalak's answer.

You might want to check out Regular Expressions in PHP so you understand what is going on.

link|flag
vote up 0 vote down

This should help you:

$numberOfNumbersFound = preg_match("/[0-9]+/", $yourString);

You could get more out of the preg_match function, so have a look at its manual

link|flag
vote up -2 vote down

is_numeric()

Or, else (maybe better in your case), a regexp.

Use this pattern could do the trick:

/^.*([0-9])+.*$/
link|flag
I guess is_numeric is one of the easy ways Scott referred to when formulating the question. – Martin Geisler May 23 at 15:27
is_numeric() will fail if thefirst digit isn't a number - "abc !./#() 123" – therefromhere May 23 at 16:10
The question asks for a means to determine whether a string contains a number, not whether it is a number, which is what is_numeric() does. I don't see why you're bothering to anchor your regular expression and then negate the effects with a greedy dot-operator; if you must use a regular expression, Tomalak's is by far the most efficient. – Rob May 23 at 16:12
My mistake, I was thinking is_numeric("123abc") would return true - it doesn't. So yeah, is_numeric definitely isn't the answer :) – therefromhere May 23 at 17:46
vote up -3 vote down

you can use this pattern to test your string using regular expressions:

$isNumeric = preg_match("/\S*\d+\S*/", $string) ? true : false;
link|flag
oops! took a minute to correct the pattern, and BAWNG! got a down vote. you are fast guys! ;P – farzad May 23 at 15:28
won't work if "asdf 123asdf" and why not using just ([0-9]+) – Jet May 23 at 16:24
i guess the fastest downvote was from me, but not for the regex but for the ? true : false; (==0 would do the same, if you insist on $isNumeric being a boolean value, however in PHP you could have just assign preg_match result to $isNumeric and then tread $isNumeric as a boolean, sinec anything <> 0 would be true and 0 false. I absolutely hate IF (boolean) THEN TRUE ELSE FALSE sort of code – MasterPeter May 23 at 22:34
I tested it and it worked. I copied the same string that you offered: "asdf 123asdf" and it returned "true". which according to sixth example of the question, should have returned true. in regex there are many ways to define a pattern, I'm sure that [0-9]+ is correct, a single \d is correct either. the pattern that I recommended here is correct either. I had my down vote because the moment I published my answer, I missed asterisks in the pattern (I thought so). and as himself says, because MasterPeter did not like the ternary operator I used. – farzad May 24 at 3:47

Your Answer

Get an OpenID
or

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