I'm searching inside an html code a specific string starting or containing, for example "name:" with this:
$r = '/name.*/';
preg_match_all($r,$body, $matches, PREG_SET_ORDER);
But I can find "name" in at least 3 different languages, so, is it possible to create this pattern with three options instead of searching 3 times? something like "or"? (regex is under PHP)