- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要用其他字符串替换一对 anchor 标记之间的字符串。更清楚地说:
<a blah blah>Click Here</a>
我想将“单击此处”替换为 <img src=... />
标签。我阅读了一些其他资源,尝试了 Lars Olav Torvik 的正则表达式工具,但严重失败!
请帮帮我!
最佳答案
是的,一般来说,使用正则表达式来解析 HTML 充满了危险。计算机科学家会正确地指出 HTML 不是 REGULAR 语言。然而,与这里许多人认为的相反,在某些情况下使用正则表达式解决方案是完全有效和适当的。阅读 Jeff Atwoods 关于这个主题的博客文章:Parsing Html The Cthulhu Way 。撇开免责声明不谈,让我们继续使用正则表达式解决方案......
原来的问题相当模糊。这是对问题的更精确(可能根本不是OP所要求的)解释/重新表述:
已知:我们有一些 HTML 文本( HTML 4.01 或 XHTML 1.0 )。此文本包含<A..>...</A>
anchor 元素。其中一些 anchor 元素是指向图像文件资源的链接(即 HREF
属性指向以文件扩展名结尾的 URI: JPEG
、 JPG
、 PNG
或 GIF
)。其中一些图像链接是简单的文本链接,其中 anchor 元素的内容是纯文本,没有其他 HTML 元素,例如<a href="picture.jpg">Link text with no HTML tags</a>
.
查找:是否有正则表达式解决方案可以获取这些“plain-text-link-to-image-resource-file”链接,并替换链接文本与 IMG
元素具有 SRC
属性设置为相同的图像 URI 资源?以下(有效的 HTML 4.01)示例输入包含三个段落。第一段中的所有链接都需要修改,但第二段和第三段中的所有链接都不要修改并保持原样:
<p title="Image links with plain text contents to be modified">
This is a <a href="img1.png">LINK 1</a> simple anchor link to image.
This <a title="<>" href="img2.jpg">LINK 2</a> has attributes before HREF.
This <a href="img3.gif" title='<>'>LINK 3</a> has attributes after HREF.
</p>
<p title="NON-image links with plain text contents NOT to be modified">
This is a <a href="tmp1.txt">LINK 1</a> simple anchor link to NON-image.
This <a title="<>" href="tmp2.txt">LINK 2</a> has attributes before HREF.
This <a href="tmp3.txt" title='<>'>LINK 3</a> has attributes after HREF.
</p>
<p title="Image links with NON-plain text contents NOT to be modified">
This is a <a href="img1.png"><b>BOLD 1</b></a> anchor link to image.
This is an <a href="img3.gif"><img src="img3.gif"/></a> image link to image.
</p>
<p title="Image links with plain text contents to be modified">
This is a <a href="img1.png"><img src="img1.png" /></a> simple anchor link to image.
This <a title="<>" href="img2.jpg"><img src="img2.jpg" /></a> has attributes before HREF.
This <a href="img3.gif" title='<>'><img src="img3.gif" /></a> has attributes after HREF.
</p>
<p title="NON-image links with plain text contents NOT to be modified">
This is a <a href="tmp1.txt">LINK 1</a> simple anchor link to NON-image.
This <a title="<>" href="tmp2.txt">LINK 2</a> has attributes before HREF.
This <a href="tmp3.txt" title='<>'>LINK 3</a> has attributes after HREF.
</p>
<p title="Image links with NON-plain text contents NOT to be modified">
This is a <a href="img1.png"><b>BOLD 1</b></a> anchor link to image.
This is an <a href="img3.gif"><img src="img3.gif"/></a> image link to image.
</p>
请注意,这些示例包括测试用例 <A..>...</A>
anchor 标记在所需的 HREF 属性之前和之后都有单引号和双引号属性值,并且包含 cthulhu 诱人(但完全有效的 HTML 4.01)、尖括号。
另请注意,替换文本是一个以 '/>'
结尾的(空)IMG 标签。 (这不是有效的 HTML 4.01)。
问题的陈述定义了要匹配的高度特定模式,其具有以下要求:
<A..>...</A>
开始标记在HREF
之前和/或之后可以有任意数量的属性。属性。HREF
属性值必须具有以 JPEG
结尾的值, JPG
, PNG
或GIF
(不区分大小写)。<A..>...</A>
的内容元素不得包含任何其他 HTML 标签。<A..>...</A>
元素目标模式不是嵌套结构。在处理如此高度特定的子字符串时,精心设计的正则表达式解决方案可以很好地工作(很少有边缘情况会导致问题)。这是一个经过测试的 PHP 函数,它可以很好地完成工作(并正确转换上面的示例输入):
// Convert text-only contents of image links to IMG element.
function textLinksToIMG($text) {
$re = '% # Match A element with image URL and text-only contents.
( # Begin $1: A element start tag.
<a # Start of A element start tag.
(?: # Zero or more attributes before HREF.
\s+ # Whitespace required before attribute.
(?!href\b) # Match attributes other than HREF.
[\w\-.:]+ # Attribute name (Non-HREF).
(?: # Attribute value is optional.
\s*=\s* # Attrib name and value separated by =.
(?: # Group for attrib value alternatives.
"[^"]*" # Either double quoted,
| \'[^\']*\' # or single quoted,
| [\w\-.:]+ # or unquoted value.
) # End group of value alternatives.
)? # Attribute value is optional.
)* # Zero or more attributes before HREF.
\s+ # Whitespace required before attribute.
href\s*=\s* # HREF attribute name.
(?| # Branch reset group for $2: HREF value.
"([^"]*)" # Either $2.1: double quoted,
| \'([^\']*)\' # or $2.2: single quoted,
| ([\w\-.:]+) # or $2.3: unquoted value.
) # End group of HREF value alternatives.
(?<= # Look behind to assert HREF value was...
jpeg[\'"] # either JPEG,
| jpg[\'"] # or JPG,
| png[\'"] # or PNG,
| gif[\'"] # or GIF,
) # End look behind assertion.
(?: # Zero or more attributes after HREF.
\s+ # Whitespace required before attribute.
[\w\-.:]+ # Attribute name.
(?: # Attribute value is optional.
\s*=\s* # Attrib name and value separated by =.
(?: # Group for attrib value alternatives.
"[^"]*" # Either double quoted,
| \'[^\']*\' # or single quoted,
| [\w\-.:]+ # or unquoted value.
) # End group of value alternatives.
)? # Attribute value is optional.
)* # Zero or more attributes after HREF.
\s* # Allow whitespace before closing >
> # End of A element start tag.
) # End $1: A element start tag.
([^<>]*) # $3: A element contents (text-only).
(</a\s*>) # $4: A element end tag.
%ix';
return preg_replace($re, '$1<img src="$2" />$4', $text);
}
是的,此解决方案中的正则表达式很长,但这主要是由于大量的注释,这也使其具有高度可读性。它还可以正确处理可能包含尖括号的带引号的属性值。是的,当然可以创建一些 HTML 标记来破坏这个解决方案,但是这样做所需的代码将非常复杂,几乎是闻所未闻的。
关于regex - 将开始和结束 anchor 标记之间的字符串替换为其他字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8687778/
如何使用 SPListCollection.Add(String, String, String, String, Int32, String, SPListTemplate.QuickLaunchO
我刚刚开始使用 C++ 并且对 C# 有一些经验,所以我有一些一般的编程经验。然而,似乎我马上就被击落了。我试过在谷歌上寻找,以免浪费任何人的时间,但没有结果。 int main(int argc,
这个问题已经有答案了: In Java 8 how do I transform a Map to another Map using a lambda? (8 个回答) Convert a Map>
我正在使用 node + typescript 和集成的 swagger 进行 API 调用。我 Swagger 提出以下要求 http://localhost:3033/employees/sear
我是 C++ 容器模板的新手。我收集了一些记录。每条记录都有一个唯一的名称,以及一个字段/值对列表。将按名称访问记录。字段/值对的顺序很重要。因此我设计如下: typedef string
我需要这两种方法,但j2me没有,我找到了一个replaceall();但这是 replaceall(string,string,string); 第二个方法是SringBuffer但在j2me中它没
If string is an alias of String in the .net framework为什么会发生这种情况,我应该如何解释它: type JustAString = string
我有两个列表(或字符串):一个大,另一个小。 我想检查较大的(A)是否包含小的(B)。 我的期望如下: 案例 1. B 是 A 的子集 A = [1,2,3] B = [1,2] contains(A
我有一个似乎无法解决的小问题。 这里...我有一个像这样创建的输入... var input = $(''); 如果我这样做......一切都很好 $(this).append(input); 如果我
我有以下代码片段 string[] lines = objects.Split(new string[] { "\r\n", "\n" }, StringSplitOptions.No
这可能真的很简单,但我已经坚持了一段时间了。 我正在尝试输出一个字符串,然后输出一个带有两位小数的 double ,后跟另一个字符串,这是我的代码。 System.out.printf("成本:%.2
以下是 Cloud Firestore 列表查询中的示例之一 citiesRef.where("state", ">=", "CA").where("state", "= 字符串,我们在Stack O
我正在尝试检查一个字符串是否包含在另一个字符串中。后面的代码非常简单。我怎样才能在 jquery 中做到这一点? function deleteRow(locName, locID) { if
这个问题在这里已经有了答案: How to implement big int in C++ (14 个答案) 关闭 9 年前。 我有 2 个字符串,都只包含数字。这些数字大于 uint64_t 的
我有一个带有自定义转换器的 Dozer 映射: com.xyz.Customer com.xyz.CustomerDAO customerName
这个问题在这里已经有了答案: How do I compare strings in Java? (23 个回答) 关闭 6 年前。 我想了解字符串池的工作原理以及一个字符串等于另一个字符串的规则是
我已阅读 this问题和其他一些问题。但它们与我的问题有些无关 对于 UILabel 如果你不指定 ? 或 ! 你会得到这样的错误: @IBOutlet property has non-option
这两种方法中哪一种在理论上更快,为什么? (指向字符串的指针必须是常量。) destination[count] 和 *destination++ 之间的确切区别是什么? destination[co
This question already has answers here: Closed 11 years ago. Possible Duplicates: Is String.Format a
我有一个Stream一个文件的,现在我想将相同的单词组合成 Map这很重要,这个词在 Stream 中出现的频率. 我知道我必须使用 collect(Collectors.groupingBy(..)
我是一名优秀的程序员,十分优秀!