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.
在 Notepad++ 或具有类似功能的编辑器中,是否可以轻松搜索包含数字的单词?例如,假设数字用“~”表示,那么如果我在以下文本中搜索“abc~”:
abc4 abc not a number
我只会得到第一个词。
使用“正则表达式”搜索模式。如果您只想查找数字组,请使用\d+. 如果您希望它选择包含一个或多个数字的整个单词,请使用\w*\d+\w*.
\d+
\w*\d+\w*
在“查找”对话框中键入此正则表达式(选择正则表达式选项):
\w*\d\w*