|
はらぽん99 さん今日は、Iranoan です。
> 文字コードが沢山あるので、この&#.....;から\uXXXXへ、16進変換×置換を秀丸で簡
> 単にできる方法はないでしょうか?
末尾の様なマクロを使えば。
//------------------------------------------------------------
setcompatiblemode 0x220F;
gofiletop;
searchdown "&#[0-9]{5,};", regular;//数字は5桁以上にしてるけど良いかな?
while( result ){
$s = gettext( foundtopx, foundtopy, foundendx, foundendy, 1 );
insert unichar( val( midstr( $s, 2, strlen( $s ) - 3 ) ) );
finddown2;
}
|
|