php rtrim 直到特定字符
我想对字符串进行某种 rtrim,直到出现特定字符,例如“”(空格)
输入:“Lorem ipsum dolor sat amet, consectetur adipiscing el”
输出:“Lorem ipsum dolor sat amet, consectetur adipiscing”
尝试过有几件事,但它们似乎都以相反的方式工作......
提前感谢
彼得
I would like to do a sort of a rtrim on a string until a specific character like a " " (space)
input: "Lorem ipsum dolor sit amet, consectetur adipiscing el"
output: "Lorem ipsum dolor sit amet, consectetur adipiscing"
Tried several things but they all seem to work the other way around...
Thanks in Advance
Peter
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
或者非正则表达式版本:
Or a non regexp version:
你尝试过这个吗?
Did you try this?
其中
\s
是您的特殊字符where
\s
is your special char