|
お世話になります。
<html>
<body>
<title>sample</title>
<h1>残したい</h1>
</body>
</html>
上記テキストに下記マクロを実行すると
消えてしまいます。
setcompatiblemode 0x0F;
searchup "<html>" , regular, nocasesense, hilight;
if( ! result ) beep;
beginsel;
searchdown "<h1>" , regular, nocasesense, hilight;
if( ! result ) beep;
delete;
replaceallfast "<h1>", "" ,regular ;
setcompatiblemode 0x0F;
searchup "</h1>" , regular, nocasesense, hilight;
if( ! result ) beep;
beginsel;
searchdown "</html>" , regular, nocasesense, hilight;
if( ! result ) beep;
delete;
replaceallfast "</html>", "" ,regular ;
残したい
を残すには何を追加すればよろしいでしょうか?
よろしくお願いいたします。
|
|