如何复制“标题” 作为“替代” “img”的。手动使用正则表达式?

发布于 2024-08-26 14:17:59 字数 422 浏览 10 评论 0原文

如何添加链接标题作为 img 的 alt。在 Dreamweaver 中使用正则表达式。我必须在一个大文档中做。以及在多个文件中

之前

<a title="Whatever is written here" href="#" target="_blank">
<img width="14" height="14" src="#" /></a>

之后

<a title="Whatever is written here" href="#" target="_blank">
<img width="14" height="14" src="#" alt="Whatever is written here" /></a>

How to add title of link as a alt of img. using regex and in dreamweaver. I have to do in a large document. and in multiple files

Before

<a title="Whatever is written here" href="#" target="_blank">
<img width="14" height="14" src="#" /></a>

after

<a title="Whatever is written here" href="#" target="_blank">
<img width="14" height="14" src="#" alt="Whatever is written here" /></a>

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

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

发布评论

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

评论(2

無心 2024-09-02 14:18:00

尝试搜索

(<a[^>]+?title=")([^"]*)("[^<]+<img)

并替换为

$1$2$3 alt="$2"

这假设 标记和 标记之间没有其他标记,并且没有(转义) ) title 属性内的引号。

编辑:将 \1 反向引用语法更改为 $1

Try searching for

(<a[^>]+?title=")([^"]*)("[^<]+<img)

and replacing with

$1$2$3 alt="$2"

This assumes that there is no other tag between the <a> tag and the <img> tag, and that there are no (escaped) quotes inside the title attribute.

EDIT: Changed \1 backreference syntax to $1.

烟凡古楼 2024-09-02 14:18:00

执行此操作的最佳方法是使用某种脚本语言(ruby、python 等)编写一个脚本:

  1. 遍历所有文件
  2. 在文件 中 查找标签。
  3. 检查是否有 围绕它(作为父级)
  4. 将 img.alt 的值放入 a.title。

已经有一些库可以解析 html/xml(例如ruby.hpricot

The best way to do this is to write a script in some scriptiong language (ruby, python etc.) that:

  1. Goes through all the files
  2. Finds in file <img> tag.
  3. Checks whether there is an <a> around it (as parent)
  4. Puts value of the img.alt to a.title.

There are already some libraties to parse html/xml (ruby.hpricot for example)

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