Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このようなものはどのようにできますか?
<b><a class='visit' href='LINK'>LINK'S NAME</a></b>
これに変えることができます:
<tr><td>LINK'S NAME<а href="LINK">constant text</a></td></tr>
正当な理由がない限り、HTML 操作に正規表現を使用しないでください。
一致の正規表現:
/<b>\s*<a\s+class='visit'\s+href='([^']*)'\s*>([^<]+)<\/a>\s*<\/b>/
交換:
"<tr><td>$2<а href=\"$1\">constant text</a></td></tr>"