以下のマクロを作成し、実行してください
-----------------------------
setcompatiblemode 0x0F;
$from1="[0-9]{2,}";
$from2="(?<!\\()[0-9]";
$from3="[0-9](?!\\))";
$to="";
gofiletop;
while(1){
replacedown $from1, $to,casesense, regular ,nohilight;
if( ! result ) break;
}
gofiletop;
while(1){
replacedown $from2, $to,casesense, regular ,nohilight;
if( ! result ) break;
}
gofiletop;
while(1){
replacedown $from3, $to,casesense, regular ,nohilight;
if( ! result ) break;
}
------------------------------
もし、あなたの環境で動作しない場合、最新の秀丸を
ダウンロードして、実行してください。
Version7.07で同左確認済みです。
お礼
ありがとうございました! 私の環境はVersion6.14でしたが、正常に動作しました。