Python如何在不使用regex的情况下匹配一个字符后跟任何内容?

发布于 2025-01-15 22:04:45 字数 182 浏览 1 评论 0原文

我有一堆看起来像 aaa -bxaaa -bxx 的字符串,其中 x 是一个数字。有没有办法在不使用 regrex 的情况下处理 bxbxx ?我记得有类似 b_ 的东西可以匹配它。

I have a bunch of string look like aaa -bx or aaa -bxx where x would be a digit. Is there any way to mach bx or bxx without using regrex? I remember there is something like b_ to match it.

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

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

发布评论

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

评论(1

心如荒岛 2025-01-22 22:04:45

您可以使用字符串方法。

匹配文字 aaa -b 后跟数字:

def match(s):
    start = 'aaa -b'
    return s.startswith(start) and s[len(start):].isdigit()

match('aaa -b33')
# True

如果您想检查最后一个 b 之后的部分是否是数字,请使用 s.rsplit('b' )[-1].isdigit()

You can use string methods.

Matching literal aaa -b followed by digits:

def match(s):
    start = 'aaa -b'
    return s.startswith(start) and s[len(start):].isdigit()

match('aaa -b33')
# True

If you rather want to check if the part after the last b are digits, use s.rsplit('b')[-1].isdigit()

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