vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Simple regex question (https://vborg.vbsupport.ru/showthread.php?t=104394)

Lionel 01-04-2006 12:50 AM

Simple regex question
 
I am getting a $value from a $_POST['value'] from a textbox

How can I make sure that only "digits" and "spaces" are allowed, and nothing else?

eg 55 32 etc...

but no 55-32 or abcd or [ or * or etc...

harmor19 01-04-2006 12:20 PM

PHP Code:

if(!is_numeric($_POST['value']))
{
  die(
'Only numerical values');


I don't know if it'll allow spaces

Code Monkey 01-04-2006 03:14 PM

That will die on spaces. This should work.

PHP Code:

$test_one '1 23465';

if(
preg_match('#[^0-9\s]#',$test_one))
{
    
$result 'Ahah! Found an evil character.';
}
else
{
    
$result 'Only Digits and Spaces here!';
}

echo 
$result

You you need to check multiple items use it as a function.
PHP Code:

$test_one '1 23465';

if(
digitsOnly($test_one))
{
    
$result 'Ahah! Found an evil character.';
}
else
{
    
$result 'Only Digits and Spaces here!';
}

echo 
$result;

function 
digitsOnly($target)
{
    return 
preg_match('#[^0-9\s]#'$target);



Lionel 01-04-2006 03:42 PM

Both methods stop valid and invalid characters.

Code Monkey 01-04-2006 05:00 PM

Not according to your original post. Is there something else you were trying to block. The regex above should return false for digits and spaces only, true for anything else.

filburt1 01-04-2006 07:33 PM

PHP Code:

if (preg_match("/^[0-9\w]+$/siU"$subject))
{
    
// valid


or
PHP Code:

function validate($subject)
{
    for (
$i 0$i strlen($subject); $i++)
    {
        if (!
is_numeric($subject{$i}) or $subject{$i} != " ")
        {
            return 
false;
        }
    }
    return 
true;



Code Monkey 01-04-2006 09:04 PM

Quote:

Originally Posted by filburt1
PHP Code:

if (preg_match("/^[0-9\w]+$/siU"$subject))
{
    
// valid


or
PHP Code:

function validate($subject)
{
    for (
$i 0$i strlen($subject); $i++)
    {
        if (!
is_numeric($subject{$i}) or $subject{$i} != " ")
        {
            return 
false;
        }
    }
    return 
true;



Not working for me.

The c wrapper ctype_digit() is much faster than is_numeric if your going to go that way about it.

Code:

^0-9\s //Anything that does not "^" have the value of a digit "0-9" or a space "\s".
^\d\s works also and might be a bit faster

Run this test on your server Lionel. It works for every combo I have tried.

PHP Code:

$test = array(
    
'55 32',
    
'123b4',
    
'4-55',
    
'9543',
    
'*/12-b',
    
'&f54gt',
    
'[1234]',
    
'12 3',
    
'end'
);

for(
$i 0$i 9$i++)
{
    echo 
digitsOnly($test[$i]) . '<br />';
}



function 
digitsOnly($target)
{
    if(
preg_match('#[^\d\s]#'$target))
    {
        return 
'Ahah! Found an evil character in <b>' $target '</b>';
    }
    else
    {
        return 
'Only Digits and Spaces here! in <b>' $target '</b>';
    }



Lionel 01-06-2006 11:58 PM

I finally got it to work by exploding the values in the array and extracting them individually.


PHP Code:

 if (!empty($_POST['predminutes1'])){
$count1 0;
foreach(
$_POST['predminutes1'] as $mkey1=>$gvalue1) {
$gsub1 explode(' '$gvalue1);
foreach(
$gsub1 as $gnumber1) {
     
# check value to add to count
     
if(!empty($gnumber1))
        
$count1++; 
if (
$count1 $predscore1) {
    eval(
print_standard_error('error_invalidscorers'));
}
if (!
preg_match('/^([0-9]*)$/'$gnumber1)){
    eval(
print_standard_error('error_invalidcharacters'));
}
}
}



akanevsky 01-07-2006 01:25 AM

PHP Code:

if (preg_match("#^[\d\s]*$#"$subject))
{
    
// valid



Code Monkey 01-07-2006 01:31 AM

Quote:

Originally Posted by Lionel
I finally got it to work by exploding the values in the array and extracting them individually.


PHP Code:

 if (!empty($_POST['predminutes1'])){
$count1 0;
foreach(
$_POST['predminutes1'] as $mkey1=>$gvalue1) {
$gsub1 explode(' '$gvalue1);
foreach(
$gsub1 as $gnumber1) {
     
# check value to add to count
     
if(!empty($gnumber1))
        
$count1++; 
if (
$count1 $predscore1) {
    eval(
print_standard_error('error_invalidscorers'));
}
if (!
preg_match('/^([0-9]*)$/'$gnumber1)){
    eval(
print_standard_error('error_invalidcharacters'));
}
}
}



That's a lot of code to do a simple task.


All times are GMT. The time now is 01:15 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01159 seconds
  • Memory Usage 1,775KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (11)bbcode_php_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete