You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Relates to #348 and #352 and requires those to be implemented first.
This would default to , (comma), but allow the user to change the value delimiter to any other arbitrary character using something like Arg::value_delim(char)
For example, if I wanted to change the delimiter to ; (semicolon) I could use Arg::value_delim(';') and then val1;val2;val3 would be parsed as 3 values but val1,val2,val3 would only be parsed as a single value.
The text was updated successfully, but these errors were encountered:
Relates to #348 and #352 and requires those to be implemented first.
This would default to
,
(comma), but allow the user to change the value delimiter to any other arbitrary character using something likeArg::value_delim(char)
For example, if I wanted to change the delimiter to
;
(semicolon) I could useArg::value_delim(';')
and thenval1;val2;val3
would be parsed as 3 values butval1,val2,val3
would only be parsed as a single value.The text was updated successfully, but these errors were encountered: