标签: regex emacs replace
在emacs上
假设我有这样的文字:
abcd abcd. 23其中. 2对于捕捉
abcd abcd. 23
. 2
使用\. [[:digit:]]我可以捕捉模式,但如何在没有.
\. [[:digit:]]
.
输出应为abcd abcd 23。
abcd abcd 23
答案 0 :(得分:4)
您可以使用捕获组来保留数字。
Replace regexp: \. ([[:digit:]]) Replace regexp with: \1
\1是指使用([[:digit:]])捕获的数字。
\1
([[:digit:]])