我想搜索并查找所有不包含以下字词的 .html 文件:“使用 API 站点范围”
我尝试这样做, (?!>)(Use API site scope).*
但我相信这一定是另一个负面展望
答案1
我找到了答案:
(?s)\A(?!.*(Use API site scope).*$)
或者
(?s)\A((?!Use API site scope).)+\z
或者
(?s)\A(?!.*?(?<!\w)(Use API site scope)(?!\w)).*
我想搜索并查找所有不包含以下字词的 .html 文件:“使用 API 站点范围”
我尝试这样做, (?!>)(Use API site scope).*
但我相信这一定是另一个负面展望
我找到了答案:
(?s)\A(?!.*(Use API site scope).*$)
或者
(?s)\A((?!Use API site scope).)+\z
或者
(?s)\A(?!.*?(?<!\w)(Use API site scope)(?!\w)).*