[4391]
Re:XMLファイルの展開
maru
とっても動きが微妙ですが、こんな感じのマクロを
膨らませていけば、いけそうな・・・;
ヘルプファイル「設定メニュー」の「共通設定」の
「マクロのプロパティ」を読んで。
// xml_entity.js
iMax = Editor.GetLineCount(0);
iCnt = 1;
while (iCnt < iMax){
sBuf = Editor.GetLineStr(iCnt);
sName = sBuf.replace(/<!ENTITY ([^ ]*) "([^"]*)">/ig,'$1');
iCnt += 1;
if (sName != '') {
sName = '&' + sName.substring(0,sName.length -2) + ';';
sValue = sBuf.replace(/<!ENTITY ([^ ]*) "([^"]*)">/ig,'$2');
sValue = sValue.substring(0,sValue.length -2);
Editor.ReplaceAll(sName, sValue, 48);
}
}
Editor.SearchClearMark();