整数和整数的正则表达式?

整数和整数的正则表达式?,第1张

整数整数的正则表达式?

对于正整数,请使用

r"(?<![-.])b[0-9]+b(?!.[0-9])"

说明:

(?<![-.])   # Assert that the previous character isn't a minus sign or a dot.b          # Anchor the match to the start of a number.[0-9]+      # Match a number.b          # Anchor the match to the end of the number.(?!.[0-9]) # Assert that no decimal part follows.

对于有符号/无符号整数,请使用

r"[+-]?(?<!.)b[0-9]+b(?!.[0-9])"

单词边界

b
对于确保整个数字匹配至关重要



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5508114.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-13
下一篇 2022-12-13

发表评论

登录后才能评论

评论列表(0条)

保存