Python 字符串修剪

发布于 2024-11-06 01:44:05 字数 267 浏览 1 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

痴者 2024-11-13 01:44:05

这是一个简单的正则表达式:

import re

s = "5+5.[)]1"
s = re.search("\d+\+\d+", s).group()
print(s) # 5+5

This is a simple regular expression:

import re

s = "5+5.[)]1"
s = re.search("\d+\+\d+", s).group()
print(s) # 5+5
灼痛 2024-11-13 01:44:05
re.search(r'\d+.\d+','123+55.[)]1').group()

这应该有效。

re.search(r'\d+.\d+','123+55.[)]1').group()

This should work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文