0
A
回答
2
1
如果你想在一個字符串替換任何最後一個逗號後面來了「」試試這個:
preg_replace("/[^,]*$/", " he is good to play", $input, 1);
相關問題
- 1. php preg_replace,正則表達式
- 2. PHP preg_replace - 正則表達式
- 3. 的preg_replace正則表達式的if else
- 4. 的Javascript正則表達式的preg_replace
- 5. MySQL的PHP的preg_replace,正則表達式
- 6. PHP正則表達式的preg_replace
- 7. PHP的preg_replace正則表達式
- 8. PHP的preg_replace正則表達式前瞻
- 9. 的preg_replace多串(PHP /正則表達式)
- 10. 的preg_replace正則表達式(123):
- 11. 的preg_replace正則表達式號信
- 12. 正則表達式和的preg_replace
- 13. 的preg_replace正則表達式與他人
- 14. 正則表達式 - 的preg_replace PHP - Understading
- 15. PHP的正則表達式preg_replace
- 16. 正則表達式 - 的preg_replace串
- 17. PHP正則表達式的preg_replace
- 18. PHP preg_replace破折號正則表達式
- 19. 正則表達式和preg_replace問題
- 20. preg_replace正則表達式更改
- 21. 正則表達式在php - preg_replace問題
- 22. PHP preg_replace正則表達式問題
- 23. 正則表達式和preg_replace PHP
- 24. 了preg_replace,否定正則表達式
- 25. 正則表達式字符串「preg_replace」
- 26. 正則表達式幫助(PHP,preg_replace)
- 27. 正則表達式(正則表達式)
- 28. 正則表達式(正則表達式)
- 29. 正則表達式(正則表達式)
- 30. 正則表達式工作不正常時投入的preg_replace
是什麼邏輯? – 2011-04-17 14:59:22
你必須指定一些規則,如*刪除第一個逗號*前的所有內容。類似的東西。我們不知道這些規則。學習正則表達式的好資源:http://www.regular-expressions.info/。祝你好運! – 2011-04-17 15:01:17
另一個很好的正則表達工具:http://refiddle.com/,它可以讓你隨時建立正則表達式,並隨時測試它們。 – 2011-04-17 20:02:42