How do i match dates in format DD_MM_YYYY and MM_YYYY and also YYYY
My strings are actually like these
a-nice-text/22_10_2020.html
another-nice-text/10_2020.html
Just-another-text/2020.html
I'm currently doing this:
str.match(/\d{2}_\d{2}_\d{4}\.html/)
but it's only matching string with 22_10_2020.html