There are two ways:-
$price=~tr/0-9.//cd; # delete anything but 0-9 and a real dot
$row_array[6]=~s/[^0-9.]//g; # clean up price, remove pound/dollar sign etc
Uncategorized
perl, price, regex, regexp
preg_match_all(‘#<b>.+?</b>#i’, $html, $matches);
// ? means non-greedy and is absolutely critical
$match[1], $match[2] contain the results
Non greedy stops the match gobbling everything between the first bold tag and the very last. I’ve never quite understood why greedy is the default behavior of RegExp (Regular Expressions) but I guess there’s a good reason for it.
PHP also has the very useful strip_tags function.
Coding Tips, PHP
regex