$re = '/[A-Z]\w+/m';
$str = 'str1 = \'95% for Pikachu, 92% for Sandsherew\'
str2 = \'70% for Paras & 100% Arcanine\'
str3 = \'99% Diglett, 40% Dugtrio\'
str4 = \'10% Squirtle, 100% for Alakazam\'
str5 = \'30% Metopod & 99% Dewgong\'';
preg_match_all($re, $str, $matches, PREG_SET_ORDER, 0);
// Print the entire match result
var_dump($matches);
Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for PHP, please visit: http://php.net/manual/en/ref.pcre.php