ループ展開の例 49 HTMLのタグ 「<(\s+|"…"|'…'|\w+|[^"'\w\s>]+)*>」 「<("…"|'…'|[^"'>]+)*>」 パターンを使うと 「<("…"|'…'|[^>'"])*>」 ( special | normal)* ↓ normal*( special normal*)* 「<[^>'"]*(("…"|'…')[^>'"]*)*>」 さらに展開すると 「<[^>'"]*("…"[^>'"]*|'…'[^>'"]*)*>」