dongnang8192 2014-09-01 13:16
浏览 180
已采纳

PHP preg_match函数从字符串中获取电话号码

Here is my PHP code. I'm needing a regular expression to get my desired output.

$str = 'abc:123,phoneNumber:631 741-4498, fdsfdsf, hgjhtg,juiy';

Expected Output: 631741-4498

$str = 'abc:123,phoneNumber:+123 423, fdsfdsf, hgjhtg,juiy';

Expected Output: +123 423

$str = 'abc:123,phoneNumber:+(123) 423-727, fdsfdsf, hgjhtg,juiy';

Expected Output: +(123) 423-727

Here's what I've tried

$str = 'abc:123,phoneNumber:631 741-4498, fdsfdsf, hgjhtg,juiy';
$str = str_replace(" ","",$str);
preg_match('/phoneNumber:\s*(.*)/', $str, $matches);
  • 写回答

1条回答 默认 最新

  • dongyoudi1342 2014-09-01 13:23
    关注

    Change your regular expression to /(\d+ \d+\-\d+)/

    <?php
    
    $str = 'abc:123,phoneNumber:631 741-4498, fdsfdsf, hgjhtg,juiy';
    preg_match('/(\d+ \d+\-\d+)/', $str, $matches);
    
    print_r($matches[0]);
    

    Live preview

    Edit

    Change your regular expression to /phoneNumber:[a-zA-Z0-9\ \+\-(\(\))]+/

    <?php
    
    $str = 'abc:123,phoneNumber:631 741-4498, fdsfdsf, hgjhtg,juiy';
    preg_match('/phoneNumber:[a-zA-Z0-9\ \+\-(\(\))]+/', $str, $matches);
    
    print_r( str_replace("phoneNumber:", "", $matches[0]) );
    

    Live preview

    Live preview - all outputs

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化