Function numeric_date_parts_separator

Source
pub fn numeric_date_parts_separator(input: &str) -> IResult<&str, ()>
Available on crate feature numeric only.
Expand description

Recognizes a separator of numeric date parts in the following templates (asterisk symbol denotes some separator):

  • dd*mm*yyyy
  • mm*dd*yyyy
  • yyyy*mm*dd

Currently the following separators are recognized: /, -, . and any number of spaces and tabs.