Jump to content

Number of digits in a string


Foser

Recommended Posts

Well first of all, is the string completely numerical? You can use ctype_digit to check if the entire string is numberic. If it's not I think you'll have to use preg_match and RegExp.

 

Not tested, but here's preg_match: (this will check the whole string and see if there are any string with 5 chars long digits. If you want to check if all strings of digits have 5 chars, you have to modify that.)

<?php
$string = "a string to match with";
$digits = false;
preg_match("/(\d+)/", $string, $reg);
foreach ($reg as $match){
if (strlen($match) >= 5) $digits = true;
}
echo $digits; //will either be true of false
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.