PHP: joker ile preg_match için Regex eregi

0 Cevap php

Aşağıdaki için bir maç almaya çalışırken:

if(eregi("<div rawurl="(.*)" class",$var,$out))

eregi is now depreciated, and regular expressions are not my strength. How do I convert this to preg_match and include the wildcard? This is my code so far, but no joy:

if(preg_match("/<div rawurl=\"(.*)\" class/",$var,$res_out))

0 Cevap