使用正则表达式 Dreamweaver 查找首字母缩略词

发布于 2024-11-10 00:31:34 字数 156 浏览 0 评论 0原文

我有 2000 页的网站,其中包含 500 多个首字母缩略词。我可以使用什么正则表达式来查找文本中的所有首字母缩略词?我正在使用织梦者。一些例子是 AFD、GTDC、IJQW 等等。这些是 2 个或更多大写字母,可能被其他字符包围或包围。这样的例子是 (DFT) 或 l'WQF - 有什么想法吗?

I have 2000 page website and it contains over 500 acronyms. What Regular expression could I use to find all the acronyms in the text only? I'm using dream-weaver. Some examples would be AFD, GTDC, IJQW and so on.. these are 2 or more capitals might be bounded or surround by other characters. Such example would be (DFT) or l'WQF - any ideas??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

梦在深巷 2024-11-17 00:31:35

如果 Dreamweaver 具有通过 grep 进行搜索的功能,您只需搜索所有大写字母的任何字符串,包括您需要的任何必要的标点符号,例如 [AZ'-]{3,}3 是缩写词中的最小字母数...您可以根据需要更改它。

不过,为了速度的缘故,通过 shell 脚本可能会更好。让我们知道您正在使用的操作系统,其他人可以留下关于如何编写脚本的评论,因为我可能不知道。

If dreamweaver has search via grep capability, you could just search for any string of letters with all capitals, including whatever necessary punctuation you need, e.g. [A-Z'-]{3,}. The 3 is the minumum number of letters in the acronym... you can change that as needed.

This would probably be better done via shell script, though, just for speed's sake. Let us know what OS you're using and someone else can leave a comment as to how to script that, as I probably don't know.

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