#31653
Yutaka Emura
Keymaster

いつもお世話になっております。江村です。

次のようなマクロで可能です。


#language = "JScript"
#async = "off"
doc = document;
document.selection.StartOfDocument();
while (document.selection.Find("#include", eeFindNext | eeFindReplaceQuiet)) {
	if (document.selection.Find('"', eeFindNext | eeFindReplaceQuiet)) {
		document.selection.CharRight();
		document.selection.OpenLink();
	}
	doc.Activate();
}

よろしくお願いいたします。