![]() |
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... |
PHP Code:
|
That will die on spaces. This should work.
PHP Code:
PHP Code:
|
Both methods stop valid and invalid characters.
|
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.
|
PHP Code:
PHP Code:
|
Quote:
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". PHP Code:
|
I finally got it to work by exploding the values in the array and extracting them individually.
PHP Code:
|
PHP Code:
|
Quote:
|
not really I just incorporated one line of code into an existing loop.
|
All times are GMT. The time now is 08:45 PM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|