SoftwareEngineering
var text = Editor.InputBox("行頭に挿入する文字列を指定してください"); if (text != "") { Editor.ReplaceAll("^", text, 132); Editor.ReDraw(); }
var text = Editor.InputBox("行末に挿入する文字列を指定してください"); if (text != "") { Editor.ReplaceAll("$", text, 132); Editor.ReDraw(); }