I have a sample code:
$text = "240 x 400 pixels, 3.0 inches (~155 ppi pixel density)";
And using regex:
preg_match_all('/(.*)( x )(.*)/i', $text, $arr);
print_r($arr[0]);
Result not change, how to fix it ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I’m guessing you want to change your regular expression to something like this:
The “.” matches any character, so when you used
.*it just matched the whole string—it doesn’t matter what you put after it. With regular expressions, it’s generally a good rule of thumb to be as specific as possible. In this case\d+will match 1 or more numeric digits, so it will stop matching when it gets to the first non-numeric digit, in this case, a space.Here’s the result of
$arrthat I get with your$textstring and the updated regular expression:Hopefully it’s closer to what you were looking for.