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.
たとえば、 stringThere are 4,000 bugs, fix them!をに置き換えたいとしThere are 4000 bugs, fix them!ます。
There are 4,000 bugs, fix them!
There are 4000 bugs, fix them!
最初のカンマは削除されますが、2 番目のコンマは保持されます。
preg_replace('/([0-9]),([0-9])/', '\\1\\2', 'There are 4,000 bugs, fix them!');
この正規表現を試してください:
/(\d+)(,)(\d+)/$1$3/
ここで適切なphpとして反対票を防ぐために:
preg_replace('/(\d+)(,)(\d+)/', '\\1\\3', $input_string);