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.
コードは次のようになります
<dt> Some text</dt> <dd>some value</dd>
html タグで終わっていない新しい行だけを削除できるようにしたいと思います。どうやってやるの?
これは、コマンドライン Perl で次のように実行できます。
perl -pe 's/(?<!>)\n//' my.html
またはこれ
perl -pe 's/([^>])\n/$1/' my.html