Skip to content

Commit

Permalink
apply: improve multi-column datefmt operation by making it case-ins…
Browse files Browse the repository at this point in the history
…ensitive

[skip ci]
  • Loading branch information
jqnatividad committed Aug 27, 2023
1 parent 357eee0 commit 0609257
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cmd/apply.rs
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,9 @@ Format multiple date columns in file.csv to ISO 8601/RFC 3339 format:
$ qsv apply datefmt 'Open Date,Modified Date,Closed Date' file.csv
Format all columns that end with "_date" in file.csv to ISO 8601/RFC 3339 format:
Format all columns that end with "_date" case-insensitve in file.csv to ISO 8601/RFC 3339 format:
$ qsv apply datefmt \_date$\ file.csv
$ qsv apply datefmt '\(?i)_date$\' file.csv
Format dates in OpenDate column using '%Y-%m-%d' format:
Expand Down

0 comments on commit 0609257

Please sign in to comment.