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.
我正在做一个项目,我被指示为每个 CSS 类添加前缀。我将如何使用文本编辑器为所有类添加前缀。我正在使用 Sublime 文本编辑器。例如 .someclass{ } 到 .za_someclass{ }
无论如何尝试再次通过所有正则表达式命令并找到解决方案。使用 ^.\b Where^(匹配字符串的开头)。(将在行首取点)和 \b(匹配单词的开头或结尾)所以不包括像 5.6em/pt 这样的数字等来自css。在我的情况下进一步使用 .za_ 替换/前缀所有实例。