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.
この文字列があるとしましょう:
I like bacon but nothing else
文字列から「ベーコン」を抽出するにはどうすればよいですか? これも好きです:
I like jerking around
そして、それはけいれんするだけですか?
ありがとう!:)
これにはおそらく正規表現が含まれますか??
$string = "I like bacon but nothing else"; $word = end(explode(" ", $string, 3)); echo $word;
これにより、文字列から 3 番目の単語が取得されます。