Hi i am trying to use regex to detect a string which is basically a date format dd-MM-Y in where the month has a '0',and I want to select the string without the '0'.
i.e 13/03/2021 ----> 13/3/2021
however, if the month is 10,11,12, it will keep the full string without transforming it.
i.e 11/11/2020 ----> 11/11/2020
thanks