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.
我尝试在 Notepadd++ 中使用正则表达式。我需要用一些长度替换每一行。例如行长是6:
6
我的模式是:
^[^$]{6}$
这没用。我有什么不对?
您应该使用以下正则表达式:
^.{6}$
$不是可以捕获或跳过的字符。就像\b(单词边界)一样 - 你不能连续两个。
$
\b