doudi2229 2012-06-12 01:49
浏览 20
已采纳

如何从字符串中找到“240x320”格式的分辨率大小?

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 ?

  • 写回答

4条回答 默认 最新

  • dsxfa26482 2012-06-12 02:01
    关注

    I'm guessing you want to change your regular expression to something like this:

    preg_match_all('/(\d+) x (\d+)/i', $text, $arr);
    

    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 $arr that I get with your $text string and the updated regular expression:

    Array
    (
        [0] => Array
            (
                [0] => 240 x 400
            )
    
        [1] => Array
            (
                [0] => 240
            )
    
        [2] => Array
            (
                [0] => 400
            )
    
    )
    

    Hopefully it's closer to what you were looking for.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥20 求个正点原子stm32f407开发版的贪吃蛇游戏
  • ¥15 正弦信号发生器串并联电路电阻无法保持同步怎么办
  • ¥15 划分vlan后,链路不通了?
  • ¥20 求各位懂行的人,注册表能不能看到usb使用得具体信息,干了什么,传输了什么数据
  • ¥15 个人网站被恶意大量访问,怎么办
  • ¥15 Vue3 大型图片数据拖动排序
  • ¥15 Centos / PETGEM
  • ¥15 划分vlan后不通了
  • ¥20 用雷电模拟器安装百达屋apk一直闪退
  • ¥15 算能科技20240506咨询(拒绝大模型回答)