I have this string Arthur Morgan_#_18/01/2021 03:30 PM_#_Date Received_
I just want to get the date of the current string.
@Ultralightbeam
Hope this is what you need.
Hi,Something that works is: "(\d{2}/\d{2}/\d{4})" in a regex tool using the parse method.
@Ultralightbeam,
Please see bleow
_(\d{2}/\d{2}/\d{4})\s.*
Hope this hepls,
Regards,
Is this what you want? if it works for u,pls mark it as a solution.