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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T10:53:00+00:00 2026-06-13T10:53:00+00:00

<a href=http://www.example.com/foo/bar/ title=foo> <img src=http://www.example.com/foo/bar/ alt=foo /> </a> How can I preg_replace the word

  • 0
<a href="http://www.example.com/foo/bar/" title="foo">
    <img src="http://www.example.com/foo/bar/" alt="foo" />
</a>

How can I preg_replace the word foo only in the href attribute?

NOTE: There are multiple links on the page.

  • 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-13T10:53:01+00:00Added an answer on June 13, 2026 at 10:53 am

    You could do this:

    $str = preg_replace('/(href="[^"]*)foo/', '$1replacement', $str);
    

    Alternatively, you could use a lookbehind:

    $str = preg_replace('/(?<=href="[^"]*)foo/', 'replacement', $str);
    

    Note that this will only work if there are no '-delimited attributes and no escaped " within your attributes.

    This is why you should really consider to use a DOM parser, instead of manipulating HTML with regular expressions.

    Update: Here is a proper implementation using a parser (I just picked PHP Simple HTML DOM Parser, because it was the first one showing up on Google):

    require "simple_html_dom.php";
    
    $html = file_get_html($filename);
    foreach($html->find('a') as $element)
    {
        $element->href = preg_replace('/foo/', 'replacement', $element->href);
    }
    

    Now echoing $html or saving it to a file, will contain the correctly replaced HTML. (Using a DOM parser can be so easy.) 😉

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

<a href=http://www.example.com/foo/bar/ title=bar>Example</a> How can I replace bar only in the href attribute? Thank
i am using the Ajaxy jQuery plugin: http://balupton.com/sandbox/jquery-ajaxy/ when i visit http://www.example.com/#/foo/ the content
How to replace HREF value with dynamic value in java <a href=\http://www.example.com\> with <a
This is a nasty one. I have an external link. <a href=http://www.example.com target=_blank> now
Observe: <span class=description> Not This person? <a href=http://www.example.com target=_self>Click Here</ > </span> I want
I have a webpage - http://www.example.com/ - where I have a button. On click
I want to get the location and the first folder, like: http://www.example.com/test/ var $location
THE EXAMPLE First and foremost, here's my code and problem: http://www.nathanstpierre.com/MBX/showoff.html THE ISSUE So
I am using Mechanize gem to parse html content. Firing this on terminal, agent.get(http://www.example.com/).search(.sidebar-deal-excerpt).first
Suppose that the user is currently located http://www.example.com/folder1/folder2/ . I would like to be

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.