2 つの正規表現を 1 つの正規表現にマージする方法を教えてください。ありがとうございます
<br /> <td class="LightRowHead"><br /> Primary Color:<br /> </td><br /> <td class="LightRow"><br /> Multi-Color<br /> </td><br /> </tr><br /> <tr><br /> <td class="DarkRowHead"><br /> Multi Pack Indicator:<br /> </td><br /> <td class="DarkRow"><br /> No<br /> </td><br /> </tr><br /> <tr><br /> <td class="LightRowHead"><br /> Battery Type:<br /> </td><br /> <td class="LightRow"><br /> Does Not Contain a Battery<br /> </td><br /> </tr><br />
<br /> $a = preg_match_all('/LightRowHead.*?>(.*?):.*?LightRow.*?>(.*?)</is', $content, $a);<br /> $a = preg_match_all('/DarkRowHead.*?>(.*?):.*?DarkRow.*?>(.*?)</is', $content, $b);<br />
<br /> $a = preg_match_all('/[LightRowHead|DarkRowHead].*?>(.*?):.*?[LightRow|DarkRow].*?>(.*?)</is', $content, $c);<br />