要求从最近的比赛开始使用正则表达式

本文关键字:正则表达式 比赛开始 最近 | 更新日期: 2023-09-27 17:58:13

<a title="Fruit" href="cate1.html" data-type="cate" />
<a title="apple" href="article1.html" data-type="article" />
<a title="orange" href="article2.html" data-type="article" />
<a title="Vegetable" href="cate2.html" data-type="cate" />
<a title="cabbage" href="article3.html" data-type="article" />

我想要相配的苹果、桔子、卷心菜。

使用<a title="(.+?)" href=".+?.html" data-type="article" />给我水果、桔子、蔬菜。

我能做什么?

要求从最近的比赛开始使用正则表达式

https://regex101.com/r/tL6eC4/1

title="([a-z]+)"

这符合你想要的,它们是小写的。