如何同时替换 = 和 &同时地
我想同时替换字符串中的“=
”和“&
”。
我的字符串为“=123&
”,我想用“”替换“&
”和“=
”,这样我就可以使用 preg_replace 获取“123
”
I want to replace both "=
" and "&
" in a string simultaneously.
I have string as "=123&
", I want to replace "&
" and "=
" with "" so that I can get "123
" using preg_replace
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
给你:
$result
现在等于"123"
。我建议使用
str_replace
(它会更快),但如果您坚持使用正则表达式,这里就是。Here you go:
$result
now equals"123"
.I recommend using
str_replace
(it will be faster), but if you insist on using regex, here it is.您可以使用
str_replace()
来完成此操作You can do this with
str_replace()