如何使用PHP的preg_match替换:
例如,请考虑以下字符串:
apple orange,strawberry, coconut
请注意:
如何使用preg_match将上面列出的元素的所有出现替换为单词YES,从而产生以下字符串
appleYESorangeYESstrawberryYEScoconut
提前致谢!
答案 0 :(得分:5)
preg_replace('/[\s,]+/', 'YES', $str);
答案 1 :(得分:1)
preg_replace('/\s+|\s*,\s*/', 'YES', $str);