I want to extract the number between <b> and </b> from this string, in this case 5
<a href="hello.php" class="links"><b>5</b><br>Visitors</a>
grep(<a href="hello.php" class="links"><b>([0-9]+)</b><br>Visitors</a>);
$number=$1;
What is the correct syntax?
<a href="hello.php" class="links"><b>5</b><br>Visitors</a>
grep(<a href="hello.php" class="links"><b>([0-9]+)</b><br>Visitors</a>);
$number=$1;
What is the correct syntax?