I have string linke this:
'Podlaski Oddział Straży Granicznej
Informacja dobowa o zdarzeniach na terenie województwa podlaskiego
w dniu 15.04.2013 r.'
I need extract date from this string: day: 15, month:4, year: 2013 and put retrieved info into timestamp(6), something like this:
to_timestamp(v_string)
.. where v_string is retrieved value (in this case '13/04/15')
What is the best way to do this with regex, to get '13/04/15' as result in this example?