-
-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Support case insensitve values #1118
Comments
kbknapp
added a commit
that referenced
this issue
Nov 28, 2017
…ible_values without worrying about ASCII case When used with `Arg::possible_values` it allows the argument value to pass validation even if the case differs from that of the specified `possible_value`. ```rust let m = App::new("pv") .arg(Arg::with_name("option") .long("--option") .takes_value(true) .possible_value("test123") .case_insensitive(true)) .get_matches_from(vec![ "pv", "--option", "TeSt123", ]); assert!(m.value_of("option").unwrap().eq_ignore_ascii_case("test123")); ``` This setting also works when multiple values can be defined: ```rust let m = App::new("pv") .arg(Arg::with_name("option") .short("-o") .long("--option") .takes_value(true) .possible_value("test123") .possible_value("test321") .multiple(true) .case_insensitive(true)) .get_matches_from(vec![ "pv", "--option", "TeSt123", "teST123", "tESt321" ]); let matched_vals = m.values_of("option").unwrap().collect::<Vec<_>>(); assert_eq!(&*matched_vals, &["TeSt123", "teST123", "tESt321"]); ``` Closes #1118
kbknapp
added a commit
that referenced
this issue
Nov 28, 2017
…ible_values without worrying about ASCII case When used with `Arg::possible_values` it allows the argument value to pass validation even if the case differs from that of the specified `possible_value`. ```rust let m = App::new("pv") .arg(Arg::with_name("option") .long("--option") .takes_value(true) .possible_value("test123") .case_insensitive(true)) .get_matches_from(vec![ "pv", "--option", "TeSt123", ]); assert!(m.value_of("option").unwrap().eq_ignore_ascii_case("test123")); ``` This setting also works when multiple values can be defined: ```rust let m = App::new("pv") .arg(Arg::with_name("option") .short("-o") .long("--option") .takes_value(true) .possible_value("test123") .possible_value("test321") .multiple(true) .case_insensitive(true)) .get_matches_from(vec![ "pv", "--option", "TeSt123", "teST123", "tESt321" ]); let matched_vals = m.values_of("option").unwrap().collect::<Vec<_>>(); assert_eq!(&*matched_vals, &["TeSt123", "teST123", "tESt321"]); ``` Closes #1118
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
via
Arg::case_insensitive(bool)
for use withArg::possible_values
If possible value is
foobar
and the user passesFoObAR
the value saved will befoobar
(or whatever the actual possible value is).This is borderline required for
#[derive(ArgEnum)] enum Foo { FooBar }
due to rust naming rules and not wanting to stray too far outside the norm.dThe text was updated successfully, but these errors were encountered: