We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
路由正则不支持a{5,10}的范围形式,但是支持a{7}这样的具体数字
预期行为: a{5,10}应该匹配5-10个连续的a 实际行为: 无法匹配
在路由规则中, 使用regexp:的形式绕过。 然后监控流量。
根据流量监控,可看到是走代理还是直链,当写范围和写准确数字时效果不同。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
描述问题
路由正则不支持a{5,10}的范围形式,但是支持a{7}这样的具体数字
预期行为:
a{5,10}应该匹配5-10个连续的a
实际行为:
无法匹配
如何复现
在路由规则中, 使用regexp:的形式绕过。
然后监控流量。
根据流量监控,可看到是走代理还是直链,当写范围和写准确数字时效果不同。

The text was updated successfully, but these errors were encountered: