Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
1) "glob:at row [0-9]" 不匹配 "at row 7" 2) "glob:at row *" 匹配 "at row 7"
为什么“glob:at row [0-9]”与“at row 7”不匹配?我如何解决它?
glob 模式只能识别两个通配符:(*零个或多个任意)和?(任意一个)。要做你想做的事,你需要使用regexp:,而不是glob:.
*
?
regexp:
glob: