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
IE9 のバグを修正するために、「DOCTYPE」宣言をページの上部に配置する必要がありました。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <?php require_once 'navBar.php';