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.
何にでも一致する正規表現を使用したいのですが、特殊文字が見つかると一致が停止します。] このパターンを使用したいのですが、これ\*\s*\[\[.*になると]]一致が停止します。
\*\s*\[\[.*
]]
たとえば、またはに一致する必要があり、に一致してはならず、またはに一致してはなりませ* [[anything here]]ん* [[]]* [[anythng here]] anything ]]* [[]]]]
* [[anything here]]
* [[]]
* [[anythng here]] anything ]]
* [[]]]]
この正規表現を Python でウィキペディア ボットに使用したいと考えています。
\*\s*\[\[.*?\]\]
上記の?後.*は、一致を消極的/貪欲にします。の最後のインスタンスではなく、最初のインスタンスまでのみ一致します。]]
?
.*