douxia1988 2015-03-11 02:49
浏览 58
已采纳

PHP正则表达式:字符串必须包含X个字符N次

I'm newbie in the world of regular expression.
I want to create an expression can match X character N times in a string.
for example:

X = t

N = 2

then it should match string test or tit or tt.

  • 写回答

2条回答 默认 最新

  • dongmei8760 2015-03-11 03:19
    关注

    Solution using RegEx

    /^([^t]*t[^t]*){2}$/
    

    Where N = 2

    • ^ Anchors the regex at the start of the string.

    • [^t]* Negated character class, matches anything other than t. * Quntifies it any number of times

    • t Which is followed by a t

    • [^t]* Further followed by anything other than t

    • {2} Quantifies the pattern 2 times. That is it ensures that not t zero or more times followed by t and followed by not t zero or more time. The entire thing must occure 2 times

    • $ Anchors the regex at the end of the string.

    Regex Demo

    Test

    $X='t';
    $N=2;
    
    $regex="/^([^".$X."]*".$X."[^".$X."]*){".$N."}$/";
    
    echo preg_match($regex, "test" );
    // => True
    

    Solution using substr_count

    The substr_count function returns the number of occurence of an substring in a string

    $X='t';
    $N=2;
    if ( substr_count('test', $X ) == $N )
    //The string is ok
    else
    //The string is not ok
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 echarts动画效果失效的问题。官网下载的例子。
  • ¥60 许可证msc licensing软件报错显示已有相同版本软件,但是下一步显示无法读取日志目录。
  • ¥15 Attention is all you need 的代码运行
  • ¥15 一个服务器已经有一个系统了如果用usb再装一个系统,原来的系统会被覆盖掉吗
  • ¥15 使用esm_msa1_t12_100M_UR50S蛋白质语言模型进行零样本预测时,终端显示出了sequence handled的进度条,但是并不出结果就自动终止回到命令提示行了是怎么回事:
  • ¥15 前置放大电路与功率放大电路相连放大倍数出现问题
  • ¥30 关于<main>标签页面跳转的问题
  • ¥80 部署运行web自动化项目
  • ¥15 腾讯云如何建立同一个项目中物模型之间的联系
  • ¥30 VMware 云桌面水印如何添加