1. ホーム
  2. c#

[解決済み] C#でコマンドライン引数を解析する最良の方法とは?[クローズド]

2022-03-14 11:08:36

質問

パラメータを受け取るコンソールアプリケーションを構築する場合、渡された引数を Main(string[] args) .

これまでは、この配列を単純にインデックス化/ループ化して、いくつかの正規表現で値を取り出していました。しかし、コマンドがより複雑になると、パースがかなり醜くなることがあります。

だから、興味があるんだ。

  • 使用しているライブラリ
  • 使用しているパターン

コマンドは常に以下のような共通規格に準拠していると仮定します。 回答はこちら .

解決方法は?

を使うことを強くお勧めします。 NDesk.オプション ( ドキュメント ) および/または Mono.オプション (同じAPI、異なる名前空間)。 また ドキュメントからの例 :

bool show_help = false;
List<string> names = new List<string> ();
int repeat = 1;

var p = new OptionSet () {
    { "n|name=", "the {NAME} of someone to greet.",
       v => names.Add (v) },
    { "r|repeat=", 
       "the number of {TIMES} to repeat the greeting.\n" + 
          "this must be an integer.",
        (int v) => repeat = v },
    { "v", "increase debug message verbosity",
       v => { if (v != null) ++verbosity; } },
    { "h|help",  "show this message and exit", 
       v => show_help = v != null },
};

List<string> extra;
try {
    extra = p.Parse (args);
}
catch (OptionException e) {
    Console.Write ("greet: ");
    Console.WriteLine (e.Message);
    Console.WriteLine ("Try `greet --help' for more information.");
    return;
}