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.
我一般想知道在它的开头找到包含短语“pPath_”的所有单词的语法是什么。我意识到 pPath_. 查找后面有一个字符的所有单词,但是如何查找任意数量的字符?(我正在使用 xCode 查找和替换)
对于“单词”的简单定义,
pPath_\w*
如果您的引擎不支持\w或没有有用的定义,您可以使用字符类。
\w
pPath_[a-zA-Z0-9_]*
如果您只想查找以“pPath_”开头的单词,您可以在开头使用单词边界 (\b)。否则,您将得到任何包含“pPath_”的单词。
\bpPath_\w+
'\w' 是一个单词字符(任何字母、数字或下划线),相当于 [a-zA-Z0-9_]
'+' 匹配一个或多个字符。