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.
在 emacs 上
假设我有这段文字:
abcd abcd. 23哪里. 2对捕捉很重要
abcd abcd. 23
. 2
有了\. [[:digit:]]我可以捕捉到模式,但如何在没有的情况下替换.
\. [[:digit:]]
.
输出应该是abcd abcd 23.
abcd abcd 23
您可以使用捕获组来保留数字。
Replace regexp: \. ([[:digit:]]) Replace regexp with: \1
是\1指使用 捕获的数字([[:digit:]])。
\1
([[:digit:]])