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.
我想知道是否有人知道插件或本机方法来搜索应用于 Sublime Text 2 中元素的类的每个实例?
我试图实现的一个例子:
我想这可能是使用正则表达式可以实现的,但这超出了我的想象。任何帮助或帮助将不胜感激。
谢谢!
我认为唯一的方法是正则表达式。你会寻找这样的东西
/\sclass=['"][^'"]*\s+sample\s+[^'"]*['"]/
但这并不是绝对严格的(因为有歧义的引号 ' 或 ")