我已经从 html 文件中提取到类名,并且每一行都包含类名,例如
</div><div id='css-11_uss_pss_sss-__i__' class='sss'> <div class="sss-top">
</div><div id='css-42_aap-8' class='css'> <div class="sss-top">
我需要从不同的行中提取“uss_pss_sss”和“aap-8”
我尝试使用此代码提取第一个条件。
preg_match("/(?<=_).*?(?=-__i__)/", $buffer, $match);
我如何提取第二行?