duanlie7962 2017-05-04 10:12
浏览 262
已采纳

PHP正则表达式提取特殊字符串

I am trying to use regex to extract a certain syntax, in my case something like "10.100" or "20.111", in which 2 numbers are separated by dot(.) . So if I provide "a 10.100", it will extract 10.100 from the string. If I provide "a 10.100 20.101", it will extract 10.100 and 20.101.

Until now I have tried to use

preg_match('/^.*([0-9]{1,2})[^\.]([0-9]{1,4}).*$/', $message, $array);

but still no luck. Please provide any suggestion because I don't have strong regex knowledge. Thanks.

  • 写回答

3条回答 默认 最新

  • drozwmi5440 2017-05-04 10:14
    关注

    You may use

    \b[0-9]{1,2}\.[0-9]{1,4}\b
    

    See the regex demo.

    Details:

    • \b - a leading word boundary
    • [0-9]{1,2} - 1 or 2 digits
    • \. - a dot
    • [0-9]{1,4} - 1 to 4 digits
    • \b - a trailing word boundary.

    If you do not care about the whole word option, just remove \b. Also, to match just 1 or more digits, you may use + instead of the limiting quantifiers. So, perhaps

    [0-9]+\.[0-9]+
    

    will also work for you.

    See a PHP demo:

    $re = '/[0-9]+\.[0-9]+/';
    $str = 'I am trying to use regex to extract a certain syntax, in my case something like "10.100" or "20.111", in which 2 numbers are separated by dot(.) . So if I provide "a 10.100", it will extract 10.100 from the string. If I provide "a 10.100 20.101", it will extract 10.100 and 20.101.';
    preg_match_all($re, $str, $matches);
    print_r($matches[0]);
    

    Output:

    Array
    (
        [0] => 10.100
        [1] => 20.111
        [2] => 10.100
        [3] => 10.100
        [4] => 10.100
        [5] => 20.101
        [6] => 10.100
        [7] => 20.101
    )
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 请问读取环境变量文件失败是什么原因?
  • ¥15 在若依框架下实现人脸识别
  • ¥15 网络科学导论,网络控制
  • ¥100 安卓tv程序连接SQLSERVER2008问题
  • ¥15 利用Sentinel-2和Landsat8做一个水库的长时序NDVI的对比,为什么Snetinel-2计算的结果最小值特别小,而Lansat8就很平均
  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载