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.
ハッシュ文字をエスケープした後、正規表現で中括弧を使用して定量化する正しい方法は何ですか?与えられた回数だけ繰り返されるハッシュ文字のシーケンスを検出したい。私は次のようなものが欲しいです:
/#{1, 6}/
補間なし。正規表現の他の部分で使用しているため、正規表現の補間を完全にオフにすることはできません。
バックスラッシュ\をエスケープ文字として使用します。
\
/\#{1, 6}/