//---------------------------------------------------------------------

 

  /// <summary>

  ///   Contains the parsed command line arguments. This consists of two

  ///   lists, one of argument pairs, and one of stand-alone arguments.

  /// </summary>

  public class CommandArgs

  {

      //---------------------------------------------------------------------

 

      private readonly Dictionary<string, string> mArgPairs = new Dictionary<string, string>();

 

      //---------------------------------------------------------------------

 

      private readonly List<string> mParams = new List<string>();

 

      /// <summary>

      ///   Returns the dictionary of argument/value pairs.

      /// </summary>

      public Dictionary<string, string> ArgPairs

      {

          get { return this.mArgPairs; }

      }

 

      /// <summary>

      ///   Returns the list of stand-alone parameters.

      /// </summary>

      public List<string> Params

      {

          get { return this.mParams; }

      }

  }

 

  //---------------------------------------------------------------------

 

  /// <summary>

  ///   Implements command line parsing

  /// </summary>

  public class CommandLine

  {

      //---------------------------------------------------------------------

 

      /// <summary>

      ///   Parses the passed command line arguments and returns the result

      ///   in a CommandArgs object.

      /// </summary>

      /// The command line is assumed to be in the format:

      /// 

      /// CMD [param] [[-|--|\]&lt;arg&gt;[[=]&lt;value&gt;]] [param]

      /// 

      /// Basically, stand-alone parameters can appear anywhere on the command line.

      /// Arguments are defined as key/value pairs. The argument key must begin

      /// with a '-', '--', or '\'. Between the argument and the value must be at

      /// least one space or a single '='. Extra spaces are ignored. Arguments MAY

      /// be followed by a value or, if no value supplied, the string 'true' is used.

      /// You must enclose argument values in quotes if they contain a space, otherwise

      /// they will not parse correctly.

      /// 

      /// Example command lines are:

      /// 

      /// cmd first -o outfile.txt --compile second \errors=errors.txt third fourth --test = "the value" fifth

      /// <param name="args"> array of command line arguments </param>

      /// <returns> CommandArgs object containing the parsed command line </returns>

      public static CommandArgs Parse(string[] args)

      {

          var kEqual = new char[] {'='};

 

          var kArgStart = new char[] {'-', '\\'};

 

          var ca = new CommandArgs();

 

          var ii = -1;

 

          var token = NextToken(args, ref ii);

 

          while (token != null)

          {

              if (IsArg(token))

              {

                  var arg = token.TrimStart(kArgStart).TrimEnd(kEqual);

 

                  string value = null;

 

                  if (arg.Contains("="))

                  {

                      // arg was specified with an '=' sign, so we need

 

                      // to split the string into the arg and value, but only

 

                      // if there is no space between the '=' and the arg and value.

 

                      var r = arg.Split(kEqual, 2);

 

                      if (r.Length == 2 && r[1] != string.Empty)

                      {

                          arg = r[0];

 

                          value = r[1];

                      }

                  }

 

                  while (value == null)

                  {

                      var next = NextToken(args, ref ii);

 

                      if (next != null)

                      {

                          if (IsArg(next))

                          {

                              // push the token back onto the stack so

 

                              // it gets picked up on next pass as an Arg

 

                              ii--;

 

                              value = "true";

                          }

 

                          else if (next != "=")

                          {

                              // save the value (trimming any '=' from the start)

 

                              value = next.TrimStart(kEqual);

                          }

                      }

                  }

 

                  // save the pair

 

                  ca.ArgPairs.Add(arg, value);

              }

 

              else if (token != string.Empty)

              {

                  // this is a stand-alone parameter. 

 

                  ca.Params.Add(token);

              }

 

              token = NextToken(args, ref ii);

          }

 

          return ca;

      }

 

      //---------------------------------------------------------------------

 

      /// <summary>

      ///   Returns True if the passed string is an argument (starts with 

      ///   '-', '--', or '\'.)

      /// </summary>

      /// <param name="arg"> the string token to test </param>

      /// <returns> true if the passed string is an argument, else false if a parameter </returns>

      private static bool IsArg(string arg)

      {

          return (arg.StartsWith("-") || arg.StartsWith("\\"));

      }

 

      //---------------------------------------------------------------------

 

      /// <summary>

      ///   Returns the next string token in the argument list

      /// </summary>

      /// <param name="args"> list of string tokens </param>

      /// <param name="ii"> index of the current token in the array </param>

      /// <returns> the next string token, or null if no more tokens in array </returns>

      private static string NextToken(string[] args, ref int ii)

      {

          ii++; // move to next token

 

          while (ii < args.Length)

          {

              var cur = args[ii].Trim();

 

              if (cur != string.Empty)

              {

                  // found valid token

 

                  return cur;

              }

 

              ii++;

          }

 

          // failed to get another token

 

          return null;

      }

  }

控制台解析命行C#的更多相关文章

  1. 使用ACE_Get_Opt解析命令行

    当我们用C++开发一些C++控制台小工具时,会需要一些用户输入的参数来决定程序如何工作和执行,而用户输入参数的方式大部分都是采用命令行参数的方式. 比如上一篇文章 玩转Windows服务系列--命令行 ...

  2. Chrome控制台输入多行js

    Chrome控制台输入多行js 分类: chrome2013-09-08 09:40 342人阅读 评论(0) 收藏 举报 控制台 Chrome控制台中回车默认是执行,要想输入换行,应按Enter+S ...

  3. boost之program_options库,解析命令行参数、读取配置文件

    一.命令行解析 tprogram_options解析命令行参数示例代码: #include <iostream> using namespace std; #include <boo ...

  4. ACE_Get_Opt解析命令行

    ACE_Get_Opt是一种解析命令行参数选项的迭代器. 1:构造方法 ACE_Get_Opt需要引用头文件,#include "ace/Get_Opt.h". ACE_Get_O ...

  5. shell解析命令行的过程以及eval命令

    本文说明的是一条linux命令在执行时大致要经过哪些过程?以及这些过程的大致顺序. 1.1 shell解析命令行 shell读取和执行命令时的大致操作过程如下图: 以执行以下命令为例: echo -e ...

  6. optparse模块解析命令行参数的说明及优化

    一.关于解析命令行参数的方法 关于“解析命令行参数”的方法我们一般都会用到sys.argv跟optparse模块.关于sys.argv,网上有一篇非常优秀的博客已经介绍的很详细了,大家可以去这里参考: ...

  7. python解析命令行参数

    常常需要解析命令行参数,经常忘记,好烦,总结下来吧. 1.Python 中也可以所用 sys 的 sys.argv 来获取命令行参数: sys.argv 是命令行参数列表 参数个数:len(sys.a ...

  8. C#/.NET 使用 CommandLineParser 来标准化地解析命令行

    CommandLineParser 是一款用于解析命令行参数的 NuGet 包.你只需要关注你的业务,而命令行解析只需要极少量的配置代码. 本文将介绍如何使用 CommandLineParser 高效 ...

  9. 使用 Apache Commons CLI 解析命令行参数示例

    很好的输入参数解析方法 ,转载记录下 转载在: https://www.cnblogs.com/onmyway20xx/p/7346709.html Apache Commons CLI 简介 Apa ...

随机推荐

  1. Eclipse使用hibernate插件反向生成实体类和映射文件

    一般dao层的开发是这样的,先进行数据库的设计,什么E-R图之类的那些,然后选择一款数据库产品,建好表.最后反向生成Java实体和映射文件,这样可以保证一致性和便捷性. 如果用myeclipse,逆向 ...

  2. matlab GPU 操作

    从Matlab2013版本开始,matlab将可以直接调用gpu进行并行计算,而不再需要安装GPUmat库.这一改动的好处是原有的matlab内置函数都可以直接运用,只要数据格式是gpuArray格式 ...

  3. Apache与Tomcat联系及区别

    Apache与Tomcat都是Apache开源组织开发的用于处理HTTP服务的项目,两者都是免费的,都可以做为独立的Web服务器运行.Apache是Web服务器而Tomcat是Java应用服务器. A ...

  4. 【总结整理】word使用技巧

    Tab+Enter,在编过号以后,会自动编号段落 Ctrl + D调出字体栏,配合Tab+Enter全键盘操作吧 Ctrl + L 左对齐, Ctrl + R 右对齐, Ctrl + E 居中 Ctr ...

  5. 面试题:四种Java线程池用法解析 !=!=未看

    1.new Thread的弊端 执行一个异步任务你还只是如下new Thread吗? 1 2 3 4 5 6 7 8 new Thread(new Runnable() {     @Override ...

  6. DBMS ODBC JDBC是什么?

    昨天躺在被窝里面看了几页电子书,今天写下来. 数据库就是存放数据的仓库. DBMS的意思是数据库管理系统,作用就是“管理”数据库的.“管理”这两个字简单说来就是“增删改查”.所以DBMS就是能够对数据 ...

  7. 3.Dynamic Layout 动态布局。在槽中处理布局

    在应用程序中,一个界面的布局基本都是固定的. 在这个实例中,我们把管理布局的代码放在槽中.这样点击一次按钮,触发槽.布局改变一次.这样就成为一个动态布局. (一) 水平和竖直布局改变 横向: 纵向: ...

  8. Part5核心初始化_lesson2---设置svc模式

    我们的Linux系统以及bootloader是工作在SVC模式!!怎么把处理器设置为SVC模式呢? CPSR寄存器或者SPSR寄存器最低5位可以设置模式,把该5位设置为0b10011, start.s ...

  9. Load-time relocation of shared libraries

    E原文地址:http://eli.thegreenplace.net/2011/08/25/load-time-relocation-of-shared-libraries/ This article ...

  10. (转)用事实说话,成熟的ORM性能不是瓶颈,灵活性不是问题:EF5.0、PDF.NET5.0、Dapper原理分析与测试手记

    原文地址:http://www.cnblogs.com/bluedoctor/p/3378683.html [本文篇幅较长,可以通过目录查看您感兴趣的内容,或者下载格式良好的PDF版本文件查看] 目录 ...