G***G 发帖数: 16778 | 1 how to do the 'find and replace' in word 2013 for the following situation
Find [a-z]_i
replace with the same first letter
for example,
before after
s_i s
w_i w
%_i not found
*_i not found
a_i a
__i not found
(_i not found
7_i not found
q_i q
t_i t | u****q 发帖数: 24345 | | G***G 发帖数: 16778 | 3 Regular expression can be used to find the string (this step is easy)
but how to replace it?
【在 u****q 的大作中提到】 : use regular expression
| p******n 发帖数: 874 | | w*****m 发帖数: 20421 | | x**8 发帖数: 4844 | 6 use vi, type:
:%s/\([a-z]\)_i/\1/gc |
|