A positive expression matches the property value of an HTML tag, and the Expression property value
Today, due to the needs of the work, we need to get the attribute value of the HTML tag, immediately think of the regular expression, labeled as follows:
Need to get the value of the label's CX, CY attribute, and then write out a:
$circle is the contents of the circle tag above
Preg_match_all ('/<\s*circle\s+[^>]*?cx\s*=\s* (\ ' |\ ') (. *?) \\1[^>]*?cy\s*=\s* (\ ' |\ ") (. *?) \\1[^>]*?\/?\s*>/i ', $circle, $arr);
Var_dump ($arr);
$arr [2] is the value of CX, $arr [4] is the value of CY.
http://www.bkjia.com/PHPjc/1102844.html www.bkjia.com true http://www.bkjia.com/PHPjc/1102844.html techarticle positive expression matches the attribute value of the HTML tag, the expression attribute value today due to the needs of the work, need to get the property value of the HTML tag, immediately think of the regular expression, labeled as follows: ...