Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

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

regex - Python - Find sequence of same characters

I'm trying to use regex to match sequences of one or more instances of the same characters in a string.

Example :

string = "55544355"
# The regex should retrieve sequences "555", "44", "3", "55"

Can I have a few tips?

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

You can use re.findall() and the ((.)2*) regular expression:

>>> [item[0] for item in re.findall(r"((.)2*)", string)]
['555', '44', '3', '55']

the key part is inside the outer capturing group - (.)2*. Here we capture a single character via (.) then reference this character by the group number: 2. The group number is 2 because we have an outer capturing group with number 1. * means 0 or more times.

You could've also solved it with a single capturing group and re.finditer():

>>> [item.group(0) for item in re.finditer(r"(.)1*", string)]
['555', '44', '3', '55']

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share

Just Browsing Browsing

[3] html - How to create even cell spacing within a

2.1m questions

2.1m answers

62 comments

56.7k users

...