我有一些变量值,我想用str_replace和str_replace_all更新。我很想知道为什么这些功能在" \ n"是字符模式的一部分,例如" \ n + \ n"。
str_replace("示例\ nof \ n + \ nmy \ nProblem"," \ n + \ n","")
我喜欢这样做以生成"示例\ nofmy \ nProblem"。
答案 0 :(得分:2)
您需要在加号前面添加\\。 e.g:
str_replace( "Example\nof\n+\nmy\nProblem", "\n\\+\n", "")