检查Python中字符串以什么数字结尾
例如“example123”将是123,“ex123ample”将是None,“123example”将是None。
Such as "example123" would be 123, "ex123ample" would be None, and "123example" would be None.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用
re
模块中的正则表达式:< code>r'\d+$' 字符串指定要匹配的表达式,由这些 特殊符号:
\d
:数字 (0-9)+
:前一项或多项(即\d
)$< /code>:输入字符串的末尾
换句话说,它尝试在字符串的末尾查找一个或多个数字。
search()
函数返回一个Match
对象,其中包含有关匹配的各种信息;如果无法匹配请求的内容,则返回None
。例如,group()
方法返回与正则表达式匹配的整个子字符串(在本例中为一些数字)。最后一行的三元
if
返回转换为数字的匹配数字或 None,具体取决于 Match 对象是否为 None。You can use regular expressions from the
re
module:The
r'\d+$'
string specifies the expression to be matched and consists of these special symbols:\d
: a digit (0-9)+
: one or more of the previous item (i.e.\d
)$
: the end of the input stringIn other words, it tries to find one or more digits at the end of a string. The
search()
function returns aMatch
object containing various information about the match orNone
if it couldn't match what was requested. Thegroup()
method, for example, returns the whole substring that matched the regular expression (in this case, some digits).The ternary
if
at the last line returns either the matched digits converted to a number or None, depending on whether the Match object is None or not.我会使用正则表达式,例如
/(\d+)$/
。这将匹配并捕获锚定在字符串末尾的一个或多个数字。阅读Python 中的正则表达式。
I'd use a regular expression, something like
/(\d+)$/
. This will match and capture one or more digits, anchored at the end of the string.Read about regular expressions in Python.
哎呀,纠正(抱歉,我错过了这一点)
你应该做这样的事情;)
导入 RE 模块
然后编写一个正则表达式,“搜索”表达式。
如果匹配则返回“123”,如果不匹配则返回 NoneType。
Oops, correcting (sorry, I missed the point)
you should do something like this ;)
Import the RE module
Then write a regular expression, "searching" for an expression.
This will return "123" if match or NoneType if not.