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.
のようなカスタム タグを含む文字列を解析する必要があり、[link][description][link-url][/link]それを に変換したいと考えてい<a href="link-url">description</a>ます。これに関するヘルプは大歓迎です。
[link][description][link-url][/link]
<a href="link-url">description</a>
使用できる正規表現は次のとおりです。
\[link\]\[(.*)\]\[(.*)\]\[\/link\]
次に、正規表現の置換を使用できます。
<a href="$2">$1</a>