1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

面倒な作業を自動化する秀丸マクロの使い方

Last updated at Posted at 2021-01-25

##手順:
・秀丸インストール
https://hide.maruo.co.jp/software/hidemaru.html

・新規マクロの作成
マクロタブ→マクロ実行→マクロ編集

・マクロファイル内に以下のような要領で記入
replaceall "変換対象文字列","変換後文字列";
※細かいマクロの内容については以下のリンク参照
https://help.maruo.co.jp/hidemac/html/080_CmdStatement_Search_replaceall_replaceallfast.html

・マクロ実行

relpace.mac
// 通常の置換
replaceall "検索文字列", "置換後文字列";

// 正規表現の置換
replaceall "¥"検索文字列¥".*", "置換後文字列",regular;


1
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?