使用正则表达式 Dreamweaver 查找首字母缩略词
我有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果 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,}
. The3
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.