- 352 名前:名無しさん@お腹いっぱい。 mailto:sage [2009/12/19(土) 18:51:31 ID:PGTd1HdbP]
- >>351
えらい人でも何でもないが、こんなもんか?(文書全体対象) var constring = "固定の文字列"; var constregex = new RegExp("^" + constring + "\\s(.*)$"); var buff = "", temp = []; for(var l = 1; l <= document.GetLines(); l++) { if(document.GetLine(l).match(constregex)) { temp.push(RegExp.$1, document.GetLine(++l)); } if(temp.length == 6) { buff += temp.join(" ") + "\n"; temp.length = 0; } } if(temp.length != 0) { buff += temp.join(" ") + "\n"; } editor.NewFile(); document.write(buff);
|

|