Regex Pattern to extract the Date format

Hello ,

Ex: I was born on 22/12/2023 and joined my company on 19-02-2022 :crazy_face: :stuck_out_tongue_closed_eyes:

Regex Pattern: \d{0,2}[/,-]\d{0,2}[/,-]\d{0,4}

HI @Nissy_Ruth_Prabhu

Checkout this expression

System.Text.RegularExpressions.regex.Match("INputSTring","\d{2}.\d{2}.\d{4}").Tostring

Regards
Sudharsan