Hi guyz, I have to use regex for 30 November 2023. This value can be dynamic.Can anyone please help me with regex expression to check this.
mkankatala
(Mahesh Kankatala)
2
Hi @Anjali_Rani
Check the below one,
\d+\s*\w+\s*\d+
Check the below image for better understanding,
Anil_G
(Anil Gorthi)
3
@Anjali_Rani
Please try this
\d{1,2} [a-zA-Z]* \d{4}
Added screenshot of results
Cheers
rlgandu
(Rajyalakshmi Gandu)
4
@Anjali_Rani
System.Text.RegularExpressions.Regex.Match(input,“\d{2}\s+[A-Z a-z]+\s+\d{4}”).Value
supriya117
(Supriya Allada)
6
Hi @Anjali_Rani
Try this:
\d+\s+\w+\s+\d+
mkankatala
(Mahesh Kankatala)
7
Check the below image for better understanding… @Anjali_Rani
Hope it helps!!
Hey @Anjali_Rani
Take a look here to learn more about Regex.
Cheers
Steve