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
比如现在用户给出 pattern :new:project,可以匹配 :new:projects 和 :new:projecttags,但如果用户真正希望匹配的只是 :new:projects,在简单自测时
:new:project
:new:projects
:new:projecttags
s
如何避免误用?更具体地,如果增强用户简单自测(仅试一例)的效果?(该例失败,说明 pattern 无效;该例成功,说明 pattern 不仅有效,而且大概率不会错误匹配其他可能类似的 websocket 事件)
提议:
注:这个问题由 @AmosJin 发现,并在应用代码里先做了特殊处理(手动加 word boundary),谢谢 :)
The text was updated successfully, but these errors were encountered:
chuan6
No branches or pull requests
比如现在用户给出 pattern
:new:project
,可以匹配:new:projects
和:new:projecttags
,但如果用户真正希望匹配的只是:new:projects
,在简单自测时s
,:new:projecttags
(一方面用户不可能对全局的名单都熟悉,另外,字符串形式的接口可能会令用户误解,以为这里有目前没有实现的自动断词功能)。如何避免误用?更具体地,如果增强用户简单自测(仅试一例)的效果?(该例失败,说明 pattern 无效;该例成功,说明 pattern 不仅有效,而且大概率不会错误匹配其他可能类似的 websocket 事件)
提议:
注:这个问题由 @AmosJin 发现,并在应用代码里先做了特殊处理(手动加 word boundary),谢谢 :)
The text was updated successfully, but these errors were encountered: