2013-05-18 54 views

回答

4

您可以使用捕獲組來保留數字。

Replace regexp: \. ([[:digit:]]) 
Replace regexp with: \1 

\1是指使用([[:digit:]])捕獲的數字。

+0

是的,那就是答案,謝謝。 Emacs上的 它將是 regexp \。 \\([[:digit:]] \\) regexp with:\ 1 – josifoski