搜索

首页  >  问答  >  正文

非连续重复序列的模式匹配正则表达式

我有一个很长的无意义字符串,其中每个字符都是数字[0-9]或小写字母[a-z],如下所示

"0z8b816ne139z1b948bjk50f9498t139gjj90t7tb3509w6h0r7tbp"

我想要一个正则表达式,可以匹配字符串中出现超过一次的非连续模式 我希望输出结果如下所示

粗体部分是匹配的部分

"0z8b816ne139z1b948bjk50f9498t139gjj90t7tb3509w6h0r7tbp"

P粉563831052P粉563831052439 天前499

全部回复(1)我来回复

  • P粉754477325

    P粉7544773252023-09-17 09:59:12

    正则表达式:(..+)(?=.*?(\1))

    参考链接

    const regex = /(..+)(?=.*?())/gm;
    
    // 使用RegExp构造函数的替代语法
    // const regex = new RegExp('(..+)(?=.*?(\1))', 'gm')
    
    const str = `0z8b816ne139z1b948bjk50f9498t139gjj90t7tb3509w6h0r7tbp
    `;
    let m;
    
    while ((m = regex.exec(str)) !== null) {
        // 避免零宽匹配导致无限循环
        if (m.index === regex.lastIndex) {
            regex.lastIndex++;
        }
        
        // 可以通过`m`变量访问结果
        m.forEach((match, groupIndex) => {
            console.log(`找到匹配,第${groupIndex}组:${match}`);
        });
    }

    回复
    0
  • 取消回复