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 8760323
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T15:00:54+00:00 2026-06-13T15:00:54+00:00

Assuming I have many strings that are like this: <a id=1.1> <a id=1.1.1> <a

  • 0

Assuming I have many strings that are like this:

<a id="1.1">
<a id="1.1.1">
<a id="1.1.2">
<a id="1.1.3">
<a id="1.2">
<a id="1.2.1">

I want to make a regular expression that catches only the ones with “#.#”, so I am trying to match it such that it ends with a double quote, but I am getting no matches.

re.compile("[1-9].[1-9]\"")

The resulting output I expect is a list containing:

  <a id="1.1">
  <a id="1.2">

What am I doing wrong? (Please suggest if there is a better way to match than the method I am using.)

  • 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-13T15:00:55+00:00Added an answer on June 13, 2026 at 3:00 pm

    Put double quotes on both sides: r'"\d\.\d"'.

    For example,

    In [109]: import re
    
    In [110]: text = '''<a id="1.1">
    <a id="1.1.1">
    <a id="1.1.2">
    <a id="1.1.3">
    <a id="1.2">
    <a id="1.2.1">'''.splitlines()
    
    In [111]: [line for line in text if re.search(r'"\d\.\d"', line)]
    Out[111]: ['<a id="1.1">', '<a id="1.2">']
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Consider I have a table, like below, that I am trying to populate with
I have run across many cases where I just want a simple database that
Assuming I have a numerical string: var foo = 0; Assume I want to
Assuming I have a ASP.NET MVC 3 application that runs in a web farm
Assuming I have a column called A and I want to check if A
Assuming you have only the URL to a file (hosted on the same server
Consider I have a Task class like this : class Task { String title
I am sorry that they ask this question has been asked many times but
Recently I've found an example on NHibernate's one-to-many relationship. The mapping goes like this:
Consider an interface that has only one method: Object getValue(String data); Suppose this describes

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.