dongzhi5846 2013-05-27 09:16
浏览 57
已采纳

如何从PHP中的字符串中删除电子邮件地址和电话号码? [关闭]

I need to remove all email and phone number from string in PHP. Can someone help me on this?

  • 写回答

1条回答 默认 最新

  • dsunj08246 2013-05-27 09:18
    关注

    This is just for a start up not a complete answer. You need to read more about regular expressions and its usage.

    remove email addresses :

    $pattern = "/[^@\s]*@[^@\s]*\.[^@\s]*/";
    $replacement = "[removed]";
    preg_replace($pattern, $replacement, $string);
    

    Reference

    For phone numbers :

    $text = preg_replace('/\+?[0-9][0-9()-\s+]{4,20}[0-9]/', '[removed]', $text);
    

    this looks for:

    a plus symbol (optional), followed by a number, followed by between 4-20 numbers, brackets, dashes or spaces, followed by a number

    and replaces with the string [removed].

    Reference

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

报告相同问题?

悬赏问题

  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码