Validate the user entered in textbox that contains only white spaces.
$str = ' ';
$str2 = " abc @ def <etc>";
I need to validate the above two strings ,that returns an output for $str is false and $str2 is true.
|
This is how I'd do it.
|
|||
|
|
|
I would use the trim method:
if (trim($str) == "") {
// empty
}
else {
// do sg
}
|
|||
|
|
|
Use trim().
|
|||
|
|
|
1)For just spaces, use str_replace: For ex, $string = str_replace(' ', '', $string); 2)For all whitespace, use preg_replace: $string = preg_replace('/\s+/', '', $string); 3)If you just are dealing with excess whitespace on the beginning or end of the string you can use trim(), ltrim() orrtrim() to remove that. |
|||
|
|
trim*cough*classic*simple*cough*problem* – deceze Sep 6 '12 at 12:55