ヘッダファイルしかないけど、とりあえず見た目をよくしたい
EmEditorの場合
public struct abc
{
//ここも消えて
public int a; //番号
//こんなのも消えてね。
public short b; //金額
}
//[[:print:]]*
これでコメント全げし
public struct abc
{
public int a;
public short b;
}
^[[:blank:]]*$\n
これで空行消し
public struct abc
{
public int a;
public short b;
}
^[[:blank:]]*
これでインデントげし
public struct abc
{
public int a;
public short b;
}
スペースを\tに変換
public struct abc
{
public int a;
public short b;
}
あとはExcelに貼り付けてごりごりコメントを・・・