丢失字符串变量的最后 3 个字符
如果我的字符串(结果)中的最后 4 个字符是“AND”或最后三个字符是“OR”,我想从字符串中删除它们。到目前为止,我正在尝试 result.trimend 和其他一些方法,但不确定如何让它工作。
谢谢
if the last 4 chars in my string(result) are " AND" or the last three chars are " OR" I would like to remove these from the string. So far I have am trying result.trimend and a few other methods but am unsure how to get it working.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您还可以使用正则表达式:
You could also use regex: