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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T22:33:28+00:00 2026-05-23T22:33:28+00:00

I can’t seem to figure out the regular expression I need in order to

  • 0

I can’t seem to figure out the regular expression I need in order to parse the following.

<div id="MustBeInThisId">
   <div class="ValueFromThisClass">
      The Value I need
   </div>
</div>

As you can see I have a wrapping div with an id. That div contain multiple other divs but only one of those divs I need the value from.

  • 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-05-23T22:33:28+00:00Added an answer on May 23, 2026 at 10:33 pm

    If you are trying to extract some data from an HTML document, you should not use regular expressions.

    Instead, you should use a DOM Parser : those are made exactly for that.

    In PHP, you would use the DOMDocument class, and its DOMDocument::loadHTML() method, to load the HTML content.

    Then, you can work with methods such as :

    • DOMDocument::getElementById() to get an element if you know its id,
    • DOMDocument::getElementsByTagName() to get all elements which have a given tag.

    You can even work with DOMXpath to execute XPath queries on your HTML content — which will allow you to search for pretty much anything in it.

    In your case, I suppose that something like this should do the trick.

    First, get your HTML content into a string (or use DOMDocument::loadHTMLFile()) :

    $html = <<<HTML
    <p>hello</p>
    <div>
        <div id="MustBeInThisId">
        <div class="ValueFromThisClass">
            The Value I need
        </div>
        </div>
    <div>
    HTML;
    

    Then, load it to a DOMDocument instance :

    $dom = new DOMDocument();
    $dom->loadHTML($html);
    

    Instanciate a DOMXPath object, and use it to query your DOM object :

    My XPath expression might be a bit more complex than necessary… I’m not really good with those…

    $xpath = new DOMXPath($dom);
    $items = $xpath->query('//div[@id="MustBeInThisId"]/div[@class="ValueFromThisClass"]');
    

    And, finally, work with the results of that query :

    if ($items->length > 0) {
        var_dump( trim( $items->item(0)->nodeValue ) );
    }
    

    And here is your result :

    string 'The Value I need' (length=16)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can I figure out if a function has already been assigned to an event?
Can't figure out how to do this in a pretty way : I have
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
Can anyone give me an example of how to return the following json simply
Can anybody tell what is the best(easy) way to sort the following string 'index'
Can I register a .Net COM class with the SingleUse -flag? The reason I
Can't work out a way to make an array of buttons in android. This
Can anyone help me trying to find out why this doesn't work. The brushes
Can't seem to get the Back Button to appear in a UINavigationController flow. I
Can we do following in SQL Server 2005 query with convert function. MaxRegID =

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.