我需要替换我的字符串中的所有撇号,只有 href=" " 标签中的那些,外面的撇号应该保留。
我正在使用 node.js。
这是我的字符串:
This is an example text. I'd love to fix this.
<a href="https://www.example.com/i'd-love-to-fly/"> I'd love to fly link </a>
Inside the text there could be more urls
<a href="https://www.example.com/i'd-rather/">I'd rather link</a>.
例如
<a href="https://www.example.com/i'd-love-to-fly/"> I'd love to fly link </a>
应该
<a href="https://www.example.com/id-love-to-fly/"> I'd love to fly link </a>
我正在尝试使用正则表达式
/https[^"]++/
它选择了整个 URL,但我不知道如何只选择和替换撇号
12345678_0001
慕婉清6462132
相关分类