gpt4 book ai didi

python - 正则表达式 - 连字符之间的匹配数字

转载 作者:太空宇宙 更新时间:2023-11-03 12:33:03 24 4
gpt4 key购买 nike

我正在尝试拼凑一个正则表达式以匹配连字符之间的数字。

一般

a-b-c-d-e, where a,b,c,d,e can each be either one, two or three digit numbers.

例子

9-b-90-2-2    

19-b-390-2-2

如何从每个表达式中选择数字 b?

最佳答案

不用正则也可以

num = "9-b-90-2-2"
print num.split('-')[1] # b

关于python - 正则表达式 - 连字符之间的匹配数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24719769/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com