|
ゆふさん,こんばんは。
>0ー9の数字を全角に統一置換は出来ますが、一桁と二桁のみ
>を半角にというマクロがどうしても分かりません。
いったんすべて半角に統一し,その後で必要な全角変換をしたらどうでしょう。
//-----------------------------------------//
disabledraw;
gofiletop;
while( 1 ) {
searchdown2 "[0-9]+", regular;
if( !result ) break;
beginsel;
moveto foundendx, foundendy;
tohankaku;
escape;
}
gofiletop;
while( 1 ) {
searchdown2 "[0-9]{3,}", regular;
if( !result ) break;
beginsel;
moveto foundendx, foundendy;
tozenkakuhira;
escape;
}
endmacro;
//-----------------------------------------//
では, (^^)/~
山紫水明(ユーザー)
SANSHISUIMEI
|
|