Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
301 views
in Technique[技术] by (71.8m points)

How regex a number length 7 in a string but the number is not start with 0 in Python?

I have a string like this:

s = "Abc 3456789 cbd 0045678 def 12345663333"
print(re.findall(r"(?<!d)d{7}(?!d)", s))

Ouput is : 3456789  and 0045678

but I only want to get 3456789. How can I do that?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

As per title of finding 7 digit numbers that don't start with 0 you may use:

(?<!d)[1-9]d{6}(?!d)

Note [1-9] at start of match before matching next 6 digits to make it total 7 digits.

RegEx Demo

To make it match any number that doesn't start with 0 use:

(?<!d)[1-9]d*(?!d)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...