这个有点傻但我拥有的是这个:
<a href="http://link.com">Title</a>
我的目标是让它看起来像这样
Title</a><a href="http://link.com">
有数千行,.com可以有许多不同的变体。我搜索了stackoverflow并找到了一些类似的正则表达式但无法转换为我工作。我对这些东西并不明智,但我觉得以下内容与我在这里读到的内容非常接近:
Find: ^([^">]*)\s+(">.*)
Replace: \2 \1
任何帮助都将非常感谢。感谢
答案 0 :(得分:2)
您可以在查找
中使用以下正则表达式(<.*?>)([^<]*?)(<\/a>)
并将其替换为
\2\3\1
答案 1 :(得分:1)
试试这个:(<a href="[\w:\/\/\.]+">)(\w+)(<\/a>)
并在替换框文本框中添加\2\1\3
。
有关正则表达式的解释:https://regex101.com/r/wFY4I3/1
答案 2 :(得分:1)
这将完成这项工作:
(<a\b[^>]+>)(.+?/a>)
$2$1
<强>解释强>
( : start group 1
<a\b : <a and a word boundary
[^>]+ : 1 or more characters that is NOT >
> : >
) : end group 1, it contains <a href.....>
( : start group 2
.+? : 1 or more any character, not greedy
/a> : /a>
) : end group 2, it contains the title and the close anchor tag.