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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T10:41:03+00:00 2026-05-15T10:41:03+00:00

I have the following string and need to extract the text inside the div’s

  • 0

I have the following string and need to extract the text inside the div’s (EDITOR’S PREFACE, MORE CONTENT, etc) and put them into an array with php. How could I do this?

Thanks in advance.

<div class='classit'><a href='site.php?site=1&filename=aname4'>EDITOR'S PREFACE</a></div> 
<div class='classit'><a href='site.php?site=4&filename=aname3'>MORE CONTENT</a></div> 
<div class='classit'><a href='site.php?site=3&filename=aname4'>LAST LINE</a></div> 
  • 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-15T10:41:04+00:00Added an answer on May 15, 2026 at 10:41 am

    You could use preg_match_all:

    <?php
    $html = <<<HTML
    <div class='classit'><a href='site.php?site=1&filename=aname4'>EDITOR'S PREFACE</a></div>
    <div class='classit'><a href='site.php?site=4&filename=aname3'>MORE CONTENT</a></div>
    <div class='classit'><a href='site.php?site=3&filename=aname4'>LAST LINE</a></div>
    HTML;
    
    $result = array();
    
    if (preg_match_all('/>([^><]+)(?=<\/a>)/', $html, $matches))
    {
        $result = $matches[1];
    }
    
    print_r($result);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string in the following format, I only need to extract the
I need to extract the text (characters and numbers) from a multiline string. Everything
I have a following string and I want to extract image123.jpg. ..here_can_be_any_length and_here_any_length/image123.jpg and_here_also_any_length
I have the following string áéíóú which I need to convert it to aeiou
I have the following string: <script>m('02:29:1467301/>Sender1*>some text message?<<02:29:13625N1/>Sender2*>Recipient2: another message??<>A<<02:29:1393100=>User1*|0User2*|%></B><<','');</script> N.B. messages are separated
I have the following data in a c++ string John Doe 01.01.1970 I need
I have following string String str = replace :) :) with some other string;
Suppose I have following string: String asd = this is test ass this is
I have the following string: cn=abcd,cn=groups,dc=domain,dc=com Can a regular expression be used here to
I have the following string and I would like to remove <bpt *>*</bpt> and

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.