Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow an option to have multiple values assigned using a comma-separated list #37

Open
MarkMichaelis opened this issue May 10, 2018 · 8 comments

Comments

@MarkMichaelis
Copy link
Contributor

Update the lexer to support specifying an option that supports more than one argument using a comma-separated list:
e.g. DisplayTable -column FirstColumn, SecondColumn
Whitespace around the comma is allowed.

@PandaMagnus
Copy link

Regex patterns are definitely not my forte, so if someone else sees this and wants it done faster than I can do, feel free to take it (and if possible, I'd love to pair on it). I'll make sure to push any tests I write to a WIP PR.

@jonsequitur
Copy link
Contributor

@PandaMagnus, the lexer isn't using a regex, but the tokenizer is. This feature would impact both, assuming spaces between comma-grouped items are allowed as in @MarkMichaelis's example.

@PandaMagnus
Copy link

@jonsequitur Understood. I'll make sure to take a look at the lexer as well. If I get in over my head I'll pair or set it aside.

@jonsequitur
Copy link
Contributor

I expect that the lexer and core parse operations will need an overhaul at some point. The implementation isn't elegant and the performance needs to be improved. That might be the kind of thing that we undertake first, with improvements like this in mind, before adding support for additional cases.

@PandaMagnus PandaMagnus removed their assignment May 23, 2018
@jonsequitur
Copy link
Contributor

In addition to , as a split delimiter, I've seen examples of | and ;, so making the actual split delimiter configurable by the user would be a good idea.

@jonsequitur
Copy link
Contributor

@srsaggam

@srsaggam
Copy link
Member

@CESARDELATORRE

@jonsequitur jonsequitur added help wanted Extra attention is needed good first issue Good for newcomers labels Mar 19, 2019
@jonsequitur
Copy link
Contributor

#736 adds support for easier custom argument parsing, so enabling custom split delimiters can be done like this:

            [Fact]
            public void custom_parsing_of_sequence_value_from_an_argument_with_one_token()
            {
                var argument = new Argument<IEnumerable<int>>(result =>
                {
                    result.Value = result.Tokens.Single().Value.Split(",").Select(int.Parse);

                    return true;
                });

                argument.Parse("1,2,3")
                        .FindResultFor(argument)
                        .GetValueOrDefault()
                        .Should()
                        .BeEquivalentTo(new[] { 1, 2, 3 });
            }

@jonsequitur jonsequitur added needs documentation and removed enhancement New feature or request good first issue Good for newcomers help wanted Extra attention is needed labels Dec 11, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants