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.
これは資料を見てもわかりません。
文字列の先頭以外のどこにでもあるものにマッチさせたい
"hello world hello hello" =~ m/^hello/
最初の hello に一致します
私が望んでいることは ^ ではないので、2 番目と 3 番目の hello に一致しますが、最初の hello には一致しません
それは可能ですか?
これは次のようになります。
/(?<=.)hello/sg