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.
好奇心のためだけに。
空の文字列を含め、どの文字列とも一致しない正規表現を作成することはできますか?
はい。
いくつかの例を次に示します。
.^ $. (?!)
当然、そのような表現は無数にあります。
この正規表現は、何にも一致しないはずです (単一行または複数行の修飾子を使用しない場合)。
$x^
ruby/^$x/. で試してみると、うまくいきそうです。
/^$x/.