dougu7546 2014-04-03 05:17
浏览 2012
已采纳

正则表达式以特定数字开头

How to write regular expression for following conditions:

  1. Should have only numbers
  2. Must be 8 digits long
  3. Must start with 8 or 9 or 6

So for I can do only for first two conditions. I am not sure how to do the third conditions My code is

 if (!preg_match('/^[0-9]{8}$/', $number))
  • 写回答

1条回答

  • doujuanqi2909 2014-04-03 05:20
    关注

    You're almost there. Simply remove the first number from the character class and validate it at the start of your pattern...

    /^(8|9|6)\d{7}$/
    

    FYI - \d is the escape sequence for digits. I suppose you could also use this

    /^[896]\d{7}$/
    

    as it means about the same thing when you're only watching for a single character at the start.

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

报告相同问题?

悬赏问题

  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?
  • ¥15 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮
  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误
  • ¥15 一道python难题3
  • ¥15 牛顿斯科特系数表表示