Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
この2つの正規表現を1つにまとめることで、たくさんのことを学べる気がします。と自体を選択せずに、主に>との間のスペースを選択するので、"><"ではなく""に置き換えることができます。そのスペースを選択せずにこれらをマージできる方法はありますか?<><
>
<
$html = preg_replace('/(\n)|(\r)/',"",$html); $html = preg_replace('/>(\s+)</',"><",$html);
$html = preg_replace('/[\n\r]+|(?<=>)\s+(?=<)/',"",$html);