检查Python中字符串以什么数字结尾

发布于 2024-11-29 19:27:09 字数 65 浏览 0 评论 0原文

例如“example123”将是123,“ex123ample”将是None,“123example”将是None。

Such as "example123" would be 123, "ex123ample" would be None, and "123example" would be None.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

∝单色的世界 2024-12-06 19:27:09

您可以使用 re 模块中的正则表达式:

import re
def get_trailing_number(s):
    m = re.search(r'\d+

< code>r'\d+$' 字符串指定要匹配的表达式,由这些 特殊符号

  • \d:数字 (0-9)
  • +:前一项或多项(即 \d
  • $< /code>:输入字符串的末尾

换句话说,它尝试在字符串的末尾查找一个或多个数字。 search() 函数返回一个 Match 对象,其中包含有关匹配的各种信息;如果无法匹配请求的内容,则返回 None 。例如,group() 方法返回与正则表达式匹配的整个子字符串(在本例中为一些数字)。

最后一行的三元 if 返回转换为数字的匹配数字或 None,具体取决于 Match 对象是否为 None。

 

, s) return int(m.group()) if m else None

< 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:

import re
def get_trailing_number(s):
    m = re.search(r'\d+

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 string

In other words, it tries to find one or more digits at the end of a string. The search() function returns a Match object containing various information about the match or None if it couldn't match what was requested. The group() 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.

, s) return int(m.group()) if m else None

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 string

In other words, it tries to find one or more digits at the end of a string. The search() function returns a Match object containing various information about the match or None if it couldn't match what was requested. The group() 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.

许仙没带伞 2024-12-06 19:27:09

我会使用正则表达式,例如 /(\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.

三人与歌 2024-12-06 19:27:09

哎呀,纠正(抱歉,我错过了这一点)

你应该做这样的事情;)

导入 RE 模块

import re

然后编写一个正则表达式,“搜索”表达式。

s = re.search("[a-zA-Z+](\d{3})$", "string123")

如果匹配则返回“123”,如果不匹配则返回 NoneType。

s.group(0)

Oops, correcting (sorry, I missed the point)

you should do something like this ;)

Import the RE module

import re

Then write a regular expression, "searching" for an expression.

s = re.search("[a-zA-Z+](\d{3})$", "string123")

This will return "123" if match or NoneType if not.

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