在Word中使用正则表达式批量修改条目
如何在 word 中找到表达式 '([anumber][anumber],'?
我有 [0-9][0-9],
但每个选项都会重复几次,因此它删除模式中的所有内容。我如何指示删除带有左括号的 **(**[0-9][0-9],
或仅删除 [0- 9][0-9],
第一个实例每行都有吗?
How can I find the expression '([anumber][anumber],' in word?
I have [0-9][0-9],
but this is repeated a few times per option therefore it removes everything in the pattern. How do i either dictate either to remove **(**[0-9][0-9],
with that left parentheses or only remove [0-9][0-9],
for the first instance of it in each line?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
让我们先澄清你的问题:
你有类似
(0123
,(4567
等) 的东西,你想让它们
(23
, <分别为 code>(67。在替换对话框中,
将
([(])[0-9][0-9]
放入 >查找框,并将\1
放入替换为框中。实际上,将
(
放入替换为。 框就可以了,但是\1
是一个更灵活的选项。Let's clarify your problem first:
You have something like
(0123
,(4567
, etc., andyou want to make them
(23
,(67
, respectively.In the replace dialog,
put
([(])[0-9][0-9]
in the find box, andput
\1
in the replace with box.Actually, put
(
in the replace with box is just fine, but\1
is a more flexible option.