регулярное выражение для представления времени в специальном формате - PullRequest
1 голос
/ 19 ноября 2010

У меня много файлов с расширениями даты.Например, сегодняшний файл будет иметь имя

имя_файла.20101118

, а формат: ггггммддЯ хотел бы перечислить / grep / etc для всех датированных файлов.

Ответы [ 4 ]

1 голос
/ 19 ноября 2010

Примечание: я предположил, что ваше "имя файла" будет только буквенно-цифровым (ASCII).


Мой лучший друг RegexBuddy говорит:

[a-zA-Z0-9]+?\.(19|20)[0-9]{2}(0[1-9]|1[012])(0[1-9]|[12][0-9]|3[01])

Совпадения

filename123.20101118
FOOBAR123.19961212

Не соответствует

FOOBAR.88881201
foobar.20103512
filename.20101235

Отказ от ответственности: Я просто счастливый пользователь ине имеет никакого отношения к РБ


Пояснение

[a-zA-Z0-9]+?\.(19|20)[0-9]{2}(0[1-9]|1[012])(0[1-9]|[12][0-9]|3[01])

Options: case insensitive

Match a single character present in the list below «[a-zA-Z0-9]+?»
   Between one and unlimited times, as few times as possible, expanding as needed (lazy) «+?»
   A character in the range between “a” and “z” «a-z»
   A character in the range between “A” and “Z” «A-Z»
   A character in the range between “0” and “9” «0-9»
Match the character “.” literally «\.»
Match the regular expression below and capture its match into backreference number 1 «(19|20)»
   Match either the regular expression below (attempting the next alternative only if this one fails) «19»
      Match the characters “19” literally «19»
   Or match regular expression number 2 below (the entire group fails if this one fails to match) «20»
      Match the characters “20” literally «20»
Match a single character in the range between “0” and “9” «[0-9]{2}»
   Exactly 2 times «{2}»
Match the regular expression below and capture its match into backreference number 2 «(0[1-9]|1[012])»
   Match either the regular expression below (attempting the next alternative only if this one fails) «0[1-9]»
      Match the character “0” literally «0»
      Match a single character in the range between “1” and “9” «[1-9]»
   Or match regular expression number 2 below (the entire group fails if this one fails to match) «1[012]»
      Match the character “1” literally «1»
      Match a single character present in the list “012” «[012]»
Match the regular expression below and capture its match into backreference number 3 «(0[1-9]|[12][0-9]|3[01])»
   Match either the regular expression below (attempting the next alternative only if this one fails) «0[1-9]»
      Match the character “0” literally «0»
      Match a single character in the range between “1” and “9” «[1-9]»
   Or match regular expression number 2 below (attempting the next alternative only if this one fails) «[12][0-9]»
      Match a single character present in the list “12” «[12]»
      Match a single character in the range between “0” and “9” «[0-9]»
   Or match regular expression number 3 below (the entire group fails if this one fails to match) «3[01]»
      Match the character “3” literally «3»
      Match a single character present in the list “01” «[01]»


Created with RegexBuddy
1 голос
/ 19 ноября 2010

Попробуйте, если вы не хотите выполнять проверку.

\.(\d{8})
1 голос
/ 19 ноября 2010

Вы имеете в виду что-то вроде этого?

/filename\.[12][90][0-9][0-9][01][0-9][0-3][0-9]/

Обратите внимание, что это также соответствует недействительным датам.

или, более обобщенно:

/[a-zA-Z0-9_]+\.[12][90][0-9][0-9][01][0-9][0-3][0-9]/

вместо [a-zA-Z0-9_] вы можете использовать любые символы, которые может содержать ваше имя файла.

0 голосов
/ 19 ноября 2010

Простейший:

find -regex ".*/.*\.[0-9]+$"

Лучше:

find -regextype posix-basic -regex ".*/.*\.[0-9]\{8\}$"

Лучший?:

find -regextype posix-extended -regex ".*/.*\.[0-9]{4}([0][1-9]|1[012])(0[1-9]|[12][0-9]|3[01])$"

Последний найдет любой год(мы не хотим повторения Y2K , не так ли?).и только месяцы в диапазоне 01-12 и дни в диапазоне 01-31.Конечно, он не подходит для правильного количества дней в месяце или для високосных дней.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...