2024年3月5日 2:15 am #31653
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();
}
よろしくお願いいたします。