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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T22:24:13+00:00 2026-05-10T22:24:13+00:00

I have a paragraph of text in a javascript variable called ‘input_content’ and that

  • 0

I have a paragraph of text in a javascript variable called ‘input_content’ and that text contains multiple anchor tags/links. I would like to match all of the anchor tags and extract anchor text and URL, and put it into an array like (or similar to) this:

Array (     [0] => Array         (             [0] => <a href='http://yahoo.com'>Yahoo</a>             [1] => http://yahoo.com             [2] => Yahoo         )     [1] => Array         (             [0] => <a href='http://google.com'>Google</a>             [1] => http://google.com             [2] => Google         ) )

I’ve taken a crack at it (http://pastie.org/339755), but I am stumped beyond this point. Thanks for the 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. 2026-05-10T22:24:13+00:00Added an answer on May 10, 2026 at 10:24 pm
    var matches = [];  input_content.replace(/[^<]*(<a href='([^']+)'>([^<]+)<\/a>)/g, function () {     matches.push(Array.prototype.slice.call(arguments, 1, 4)) }); 

    This assumes that your anchors will always be in the form <a href='...'>...</a> i.e. it won’t work if there are any other attributes (for example, target). The regular expression can be improved to accommodate this.

    To break down the regular expression:

     / -> start regular expression   [^<]* -> skip all characters until the first <   ( -> start capturing first token     <a href=' -> capture first bit of anchor     ( -> start capturing second token         [^']+ -> capture all characters until a '     ) -> end capturing second token     '> -> capture more of the anchor     ( -> start capturing third token         [^<]+ -> capture all characters until a <     ) -> end capturing third token     <\/a> -> capture last bit of anchor   ) -> end capturing first token /g -> end regular expression, add global flag to match all anchors in string 

    Each call to our anonymous function will receive three tokens as the second, third and fourth arguments, namely arguments[1], arguments[2], arguments[3]:

    • arguments[1] is the entire anchor
    • arguments[2] is the href part
    • arguments[3] is the text inside

    We’ll use a hack to push these three arguments as a new array into our main matches array. The arguments built-in variable is not a true JavaScript Array, so we’ll have to apply the split Array method on it to extract the items we want:

    Array.prototype.slice.call(arguments, 1, 4) 

    This will extract items from arguments starting at index 1 and ending (not inclusive) at index 4.

    var input_content = 'blah \     <a href=\'http://yahoo.com\'>Yahoo</a> \     blah \     <a href=\'http://google.com\'>Google</a> \     blah';  var matches = [];  input_content.replace(/[^<]*(<a href='([^']+)'>([^<]+)<\/a>)/g, function () {     matches.push(Array.prototype.slice.call(arguments, 1, 4)); });  alert(matches.join('\n')); 

    Gives:

     <a href='http://yahoo.com'>Yahoo</a>,http://yahoo.com,Yahoo <a href='http://google.com'>Google</a>,http://google.com,Google 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 93k
  • Answers 93k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer See the listing of the specific securables affected by CONTROL… May 11, 2026 at 6:33 pm
  • Editorial Team
    Editorial Team added an answer This is a neat way to do it: letters =… May 11, 2026 at 6:33 pm
  • Editorial Team
    Editorial Team added an answer I've been using Eclipse for years, and I found that… May 11, 2026 at 6:33 pm

Related Questions

I have a paragraph of text in a javascript variable called 'input_content' and that
I'm interested in seeing a good diff algorithm, possibly in Javascript, for rendering a
I'm trying to implement an outdent of the first letter of the first paragraph
I am having problems with getting a HTML editor working. We are using contentEditable
I need to add line breaks in the positions that the browser naturally adds

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.