Jump to content

Regex to extract the integer from these source code


Raex

Recommended Posts

Hi, I need to extract the integers from the source code:

<span class=CatLevel1><a onclick="Javascript:ShowMeu('21');">Arts</a> (9768)</span>
<span class=CatLevel1><a onclick="Javascript:ShowMeu('271');">Industrial Products</a> (9321)</span>
<span class=CatLevel1><a onclick="Javascript:ShowMeu('1273');">Baby</a> (11407)</span>

What are the pattern that I can use to retrieve all the integer in the bracket (9768, 9321, 11407)? 

 

This is my php code: 

<!DOCTYPE html>
<html>
<body>


<?php
$file_string = file_get_contents('http://www.lelong.com.my/');
preg_match('/<title>(.*)<\/title>/i', $file_string, $title);     //pattern
$title_out = $title[1];
echo $title_out;
?>
 

</body>
</html>

Thanks

Edited by Raex
Link to comment
Share on other sites

Something like this?

<?php

$str = <<<EOD
<span class=CatLevel1><a onclick="Javascript:ShowMeu('21');">Arts</a> (9768)</span>
<span class=CatLevel1><a onclick="Javascript:ShowMeu('271');">Industrial Products</a> (9321)</span>
<span class=CatLevel1><a onclick="Javascript:ShowMeu('1273');">Baby</a> (11407)</span>
EOD;

if (preg_match_all('~\(([\d]+)\)~', $str,$matches)) {
 echo '<pre>'.print_r($matches[1], true).'</pre>';
} else {
  echo 'no match';
}
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.