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

  • Home
  • SEARCH
  • 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 5977413
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T21:22:02+00:00 2026-05-22T21:22:02+00:00

I have a string that has some hyperlinks inside. I want to match with

  • 0

I have a string that has some hyperlinks inside. I want to match with regex only certain link from all of them. I can’t know if the href or the class comes first, it may be vary.
This is for example a sting:

<div class='wp-pagenavi'>
<span class='pages'>Page 1 of 8</span><span class='current'>1</span>
<a href='http://stv.localhost/channel/political/page/2' class='page'>2</a>     
<a href='http://stv.localhost/channel/political/page/3' class='page'>3</a>ccccc<a href='http://stv.localhost/channel/political/page/4' class='page'>4</a><a href='http://stv.localhost/channel/political/page/5' class='page'>5</a><a href="http://stv.localhost/channel/political/page/2" class="nextpostslink">»eee</a><span class='extend'>...</span><a href='http://stv.localhost/channel/political/page/8' class='last'>lastן »</a>
<a class="cccc">xxx</a>
</div>

I want to select from the aboce string only the one that has the class nextpostslink
So, the match in this example should return this –

<a href="http://stv.localhost/channel/political/page/2" class="nextpostslink">»eee</a>

This regex is the most close I could get –

/<a\s?(href=)?('|")(.*)('|") class=('|")nextpostslink('|")>.{1,6}<\/a>/

But it is selecting the links from the start of the string.
I think my problem is in the (.*) , but I can’t figure out how to change this to select only the needed link.

I would appreciate your help.

  • 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-22T21:22:03+00:00Added an answer on May 22, 2026 at 9:22 pm

    It’s much better to use a genuine HTML parser for this. Abandon all attempts to use regular expressions on HTML.

    Use PHP’s DOMDocument instead:

    $dom = new DOMDocument;
    $dom->loadHTML($yourHTML);
    
    foreach ($dom->getElementsByTagName('a') as $link) {
        $classes = explode(' ', $link->getAttribute('class'));
    
        if (in_array('nextpostslink', $classes)) {
            // $link has the class "nextpostslink"
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string that has some Environment.Newline in it. I'd like to strip
I have a list that has some chapter numbers in string. When I sort
I have a List<string> that has some items like this: {"Pre Mdd LH", "Post
I have to parse some files that contain some string that has characters in
We have a certain database that has some employee information, and I just wrote
I have a Spring application that I believe has some bottlenecks, so I'd like
I have a text string that has been doctored to be web safe URLs
I have a string list (TStrings) that has a couple thousand items in it.
I have a string I need to feed to a com object that has
I have a c# class that has 20+ string properties. I set about a

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.