Python 字符串修剪
我有一个 python 字符串,其格式如下:
[NUMBER][OPERATOR][NUMBER][UNNEEDED JUNK]
例如:
5+5.[)]1
我怎样才能将其修剪为仅 5+5
?
编辑
我忘了提及,基本上,您只需要查找运算符之后的第一个非数字字符,然后裁剪所有内容(从该点开始)。
I have a string in python, which is in this format:
[NUMBER][OPERATOR][NUMBER][UNNEEDED JUNK]
e.g.:
5+5.[)]1
How could I trim that down to just 5+5
?
EDIT
I forgot to mention, basically, you just need to look for the first non-numeric character after the operator, and crop everything (starting at that point) off.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个简单的正则表达式:
This is a simple regular expression:
这应该有效。
This should work.