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.
文字列の終わりを次のような範囲に入れることはできますか?
$string=preg_replace('/([a-z])([ \,$])/','$2',$string);
それで、それは任意の小文字に一致し、次にスペース、コンマ、または文字列の終わりのいずれかに一致しますか?
交互に使用できます。
([ ,]|$)
文字クラス内で使用する場合は$、リテラルのドル記号にのみ一致します。
$