I have never understood the pattern of regular expression and after googling I haven't been any wiser.

I want to grab the WordPress version number (3.2) from this string:

<meta name="generator" content="WordPress 3.2" />

In the future when upgrading to 3.3 I wan't the split code to be able to get that to. So no static expression.

How do I solve this?

link|improve this question

64% accept rate
2  
The proper way would be to use a HTML parser, even though it might seem like overkill for the task – Pekka Jul 12 '11 at 17:26
It might be overkill, but it would be a lot more reliable in the long run. If WP changes whitespace or what have you, the regex could break. – Anthony Jul 12 '11 at 17:29
feedback

3 Answers

up vote 2 down vote accepted

Here is a regular expression that works for this...

$str = '<meta name="generator" content="WordPress 3.2" />';
preg_match('/meta name="generator" content="WordPress [0-9]+\.[0-9]" /', $str, $matches);
preg_match('/[0-9]+\.[0-9]/', $matches[0], $matches1);
$version = $matches1[0];
echo "Wordpress version is = $version";

It should output this:

Wordpress version is = 3.2

link|improve this answer
Thanks that worked excellent! – Fredrik Jul 12 '11 at 19:35
Your very welcome. – pthurmond Jul 12 '11 at 19:46
feedback
preg_match('|<meta name="generator" content="WordPress (.*?)" />|', $where_to_search_for, $match);
print_r($match);
link|improve this answer
feedback
$data = '<meta name="generator" content="WordPress 3.2" />';
$pat = '<meta name="generator" content="WordPress (\d*\.?\d*)" />';
if(($match = preg_match($pat, $data)) !== false){
    echo $match[1];
}else{
    echo "not found";
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.