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++ 中使用正则表达式时遇到问题。简单地说-我不知道如何表达自己的意思,这会做类似的事情:它必须改变这些行
AAA BBB 433 BBB CCC 45 JJJ KK 23
依此类推,到那些行:
AAA BBB 1 BBB CCC 1 JJJ KK 1
总而言之-我想将最后一列(列用空格分隔)中的值更改为值“1”。但我无法制定一个有效的公式来做到这一点。请帮我。
利用:
(\s)\d+$
用。。。来代替:
($1)1
并击中Replace All。这会将行尾的每个数字(前面有列分隔符,即空格)替换为1.
1
注意:您也可以使用\s\d+$和替换为" 1"(不带引号)。
\s\d+$
" 1"