(...) // 分组 (?...) // 非捕获分组 (?=...) // 环视非捕获分组 var str = 'abcfyabc'; str.replace(/(w)(?=.*?1)/g, '');