Replace the last comma in a string using Regular Expression

烂漫一生 提交于 2020-01-09 23:18:11

问题


I have a string like:
"item 1, item 2, item 3".
What I need is to transform it to:
"item 1, item 2 and item 3".

In fact, replace the last comma with " and". Can anyone help me with this?


回答1:


Use greediness to achieve this:

$text = preg_replace('/(.*),/','$1 and',$text)

This matches everything to the last comma and replaces it through itself w/o the comma.




回答2:


This regex finds last coma: (,)[^,]*$



来源:https://stackoverflow.com/questions/6705509/replace-the-last-comma-in-a-string-using-regular-expression

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!