Jump to content

Trouble getting <img> alt text with regular expression


Greaser9780

Recommended Posts

I'm in the midst of building a search engine. I am going to rank sites for each search on things like % of query words to total words for various groups(alt text, description words, title, keywords) and so on. I did however get the following to work:

$regexp = "<img src=\"(.*)\" alt=\"(.*)\">"; 
if(preg_match_all("/$regexp/siU", $input, $img, PREG_SET_ORDER)) { 
foreach($img as $alt){
$alt_words = adv_count_words($alt[2]);
echo "$alt[2]  -  $alt_words<br />";

 

So far I can get the words and word count for the following:

title

meta description

meta keywords

link text

link href

heading text

bold text

underlined text

img alt text

Link to comment
Share on other sites

Now I'm starting to wonder how to put it all in the db. Since the links, alt text,headings, and bold type are all listed by line. I hate to input it with a foreach loop since this will cause many small queries, but maybe this is better than one ginormous query.

    Then there is the problem when a search is performed. How exactly should the user query to keyword % get checked?

1. Check for all keywords

  if all are found what is the percentage

  if all are not found break string into individual words and check for %

or

2. Break user query into individual words and check percentage this way?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.