在Word中使用正则表达式批量修改条目

发布于 2024-10-31 12:17:01 字数 195 浏览 4 评论 0原文

如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

挽容 2024-11-07 12:17:02

让我们先澄清你的问题:

你有类似 (0123, (4567 等) 的东西,

你想让它们 (23, <分别为 code>(67。


替换对话框中,

([(])[0-9][0-9] 放入 >查找框,并将

\1放入替换为框中。

实际上,将(放入替换为。 框就可以了,但是 \1 是一个更灵活的选项。

Let's clarify your problem first:

You have something like (0123, (4567, etc., and

you want to make them (23, (67, respectively.


In the replace dialog,

put ([(])[0-9][0-9] in the find box, and

put \1 in the replace with box.

Actually, put ( in the replace with box is just fine, but \1 is a more flexible option.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文