|
h-tom です。
秀丸エディタ:Ver.8.94β3 64bit
OS:Windows10(1909) 64bit
検索で、「選択した範囲」を[文字単位]にした場合、正規表現がONだとヒットしませ
ん。
検索用DLLの違いかと思いましたが、HMJRE.DLLでも同じです。
//確認用のマクロ ここから
setcompatiblemode 0x20000;
newfile;
insert "0123456789\n";
insert "0123456789\n";
gofiletop;
moveto 5,1;
beginsel;
moveto 5,0;
endsel;
searchdown2 "5",inselect2,nohilight;
message "正規表現off:" + str(result);
escape;
left;
gofiletop;
moveto 5,1;
beginsel;
moveto 5,0;
endsel;
searchdown2 "5", regular, inselect2, nohilight;
message "正規表現on:" + str(result);
endmacro;
//確認用のマクロ ここまで
|
|