I have a string in perl that contains a directory specification. If the string contains any individual or combination of substrings that comprise a date mask, I want to extract that substring. For example, the directory spec may be:
/mydir/data/YYYYMMDD
I want to be able to extract the "YYYYMMDD" string. However that portion of the path could be any individual or combination of the following strings:
YY
YYYY
MM
DD
So the directory spec string could read:
/mydir/data/DD/data2
and I want the "DD" returned as a result of the regex comparison. How do I capture the string when it must contain one or more of those date mask strings and that string must be between two "/" characters or exist at the end of the string?
YY,DDetc, or numbers representing dates? – TLP Dec 8 '11 at 23:17m{/((YYYY|YY|MM|DD){1,})/}is close, but doesn't handle end-of-strings, and also not in cases like "YYYY/MM/" I don't think. But maybe helpful. – BRPocock Dec 8 '11 at 23:54