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, Another day to die. => Hello world
次の表現を試しています。
/^.*,/
しかし、結果は「Hello world!」です。
最後の文字 (!) を無視したい。誰か手を貸してくれませんか?
よろしくお願いします。
これはもう一つ、
$str = 'Hello world, Another day to die'; preg_match('/[^,]+/', $str, $match);
次を使用します。
/^[\w\s]+/