SoftwareEngineering

サクラエディタ

マクロ集

行頭に文字列を挿入する.js

var text = Editor.InputBox("行頭に挿入する文字列を指定してください");

if (text != "") {
    Editor.ReplaceAll("^", text, 132);
    Editor.ReDraw();
}

行末に文字列を挿入する.js

var text = Editor.InputBox("行末に挿入する文字列を指定してください");

if (text != "") {
    Editor.ReplaceAll("$", text, 132);
    Editor.ReDraw();
}

トップ   差分 履歴 リロード   一覧 検索 最終更新   ヘルプ   最終更新のRSS
Last-modified: 2021-06-23 (水) 12:03:45