Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8748953
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T12:36:46+00:00 2026-06-13T12:36:46+00:00

I have a Python question imagine variable x below. I want to write a

  • 0

I have a Python question imagine variable x below. I want to write a regular expression that helps me finds any repeating single digits. Like 1 is not repeated, but 2 is mentioned twice, and 3 is 3 times.

x='1234328732'#a string of digits

re.search(r'(\d+).*\1', x).group(1) 

this is what I thought, but this just gives me a return of patterns. The above returns nothing cause there is no repeating patterns. But if

x='1231231234' 

it will return 123
But repeating patterns is not what I want. I want repeating digits. So for the first x it should give 2, 3
for the second x it should give 1, 2, 3

This is for learning the RE idea mostly
Thx

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T12:36:47+00:00Added an answer on June 13, 2026 at 12:36 pm

    may be something like this, using Counter():

    >>> import re
    >>> from collections import Counter
    
    >>> x='1234328732'
    >>> c=Counter(re.findall(r'\d',x))
    >>> [x for x in c if c[x]>1]
    ['3', '2']
    
    
    >>> x='1231231234' 
    >>> c=Counter(re.findall(r'\d',x))
    >>> [x for x in c if c[x]>1]
    ['1', '3', '2']
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a python modules question: I need to write a script that will
I do NOT have python/ruby enabled. My Question: I frequently have to write things
A question that seems to have quite a few options for Python, but none
hello i have question in Python subprocess module I want to interaction with child
I have a python question that I'm sure is pretty simple - please feel
Newbie Python question. I have a class that inherits from several classes, and some
I have a question about python mechanize's proxy support. I'm making some web client
I have question about clean thory in Python. When: @decorator_func def func(bla, alba): pass
A python/django beginner's question: I have a datetime object (drive_date), a time object (start_time)
I have a question related to understanding of how python dictionaries work. I remember

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.