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.
我被告知要在网页上的现有段落中添加一些文本。我打开了相应的文件,复制了一些现有的文本,并在源代码中进行了搜索。搜索什么也没找到,我快疯了。事实证明,在源代码中,一些单词之间有额外的空格,由于浏览器中没有显示,所以在代码中搜索它们时出错了。
有人有避免这种情况的提示吗?例如,有没有办法忽略空格,也许使用正则表达式?添加一句文本应该很简单,但我最终使用了 Dreamweaver 中的设计视图。
using +a +pattern +like +this使用正则表达式,您可以通过在每个空格后面放置一个来搜索多个空格+,这将指示搜索查找一个或多个。
using +a +pattern +like +this
+