dongpan1308 2016-02-06 23:35
浏览 34
已采纳

preg_match:/ username或/ username / foo

I'm wanting to preg_match the following URIs. Note usernames are: [\w]{1,15}

/username
/username/foo
/usersname/bar

I want these to fail

/username/anythingelse

The username is mandatory, so the preg_match should work if just a username is given, and then check if anything after is either foo or bar.

preg_match('{^\/([\w]+){1,15}/{/foo|/bar}?$}', $uriString)

You can probably tell my preg_match fails. How may I fix this?

  • 写回答

2条回答 默认 最新

  • dsdsds12222 2016-02-06 23:39
    关注

    Use parentheses to specify a group of alternatives;

    Curly braces are only used to limit repetition {min,max}

    ^\/\w{1,15}(\/foo|\/bar)?$ ==> DEMO

    Above, we allow \w 1 up to 15 times (\w matches any word character [a-zA-Z0-9_])

    Followed by either \/foo or \/bar

    ^ and $ specify the start and the end of the string, meaning that the regex must match the full string not only a part of it

    You can read more about:

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

报告相同问题?

悬赏问题

  • ¥15 高德地图点聚合中Marker的位置无法实时更新
  • ¥15 DIFY API Endpoint 问题。
  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办