GithubHelp home page GithubHelp logo

Comments (3)

siywilliams avatar siywilliams commented on July 21, 2024

The array passed into static void Main(string[] args) by the .Net framework seems to be different depending on whether you have the final '' character in it.

This article also explains the problem.

Fclp is expecting the .Net framework to have already parsed --dir "C:\temp\bar" --sk [veris into an array with 4 strings. This doesn't happen as the backslash seems to have escaped some parsing condition which has resulted in 2 strings. As a result it thinks the string "C:\temp\bar" --sk [veris is the value for the --dir option, which fails to parse because of the whitespace (it thinks the whitespace is seperating another value which is only valid if you're parsing into a List)

--dir "C:\temp\bar" --sk [veris

2015-07-17 18_30_14-fluentcommandlineparser debugging - microsoft visual studio

--dir "C:\temp\bar" --sk [veris

2015-07-17 18_29_19-fluentcommandlineparser debugging - microsoft visual studio

from fluent-command-line-parser.

nelyom avatar nelyom commented on July 21, 2024

I've ended up resolving this via my own parser pulling from Environment.CommandLine, rather than rely on the incoming string[] args.

The funny rules on the .NET (and underneath that CommandLineToArgvW) are easily worked around if a little bit of logic is applied.

I've submitted my little project here. https://github.com/nelyom/cmdLineTokenizer

from fluent-command-line-parser.

NTTAKR avatar NTTAKR commented on July 21, 2024

See also Issue #63

from fluent-command-line-parser.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.