Hi there,
Is anyone able to help with the following request: I'm trying to use regular expression to extract the month from a date of DD/MM/YYYY.
So far, I have
^(.{3}).(.*)
^(.{3})(.)(.*)$
^(\d{2}).*
which all provide the day = DD
But I'm looking for the expression that only returns the month = MM
Does anybody know how to do this?
Many thanks,
Christine
Hi John,
That's fantastic, thank you very much for this, 100% works. Much appreciated! Was driving us all mad!
Many many thanks
Christine Beadle
Hi there,
Is anyone able to help with the following request: I'm trying to use regular expression to extract the month from a date of DD/MM/YYYY.
So far, I have
^(.{3}).(.*)
^(.{3})(.)(.*)$
^(\d{2}).*
which all provide the day = DD
But I'm looking for the expression that only returns the month = MM
Does anybody know how to do this?
Many thanks,
Christine