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.
以下の行を変数に割り当てています。
"[ some contents ] NAME:saranyya"
grepこのパターンの後に続く単語をどのように取得できますか?
grep
単純なキャプチャがニーズに合う場合があります。あなたが何を意味するのかはかなり不明確ですが。
my ($word) = $string =~ /\Q[ some contents ] NAME:saranyya \E(.+)/;
エスケープにより、正規表現内\Q .. \Eでメタ文字を使用できるようになります。[]パターンに続くテキストはすべてキャプチャされ、に割り当てられ$wordます。
\Q .. \E
[]
$word