I'm trying to match some word trying to ignoring the case sensitivity
For example
\b(Yes|No)
I need the my regex to find if the user enters Yes
Or YES
without case sensitivity
i tried to add .*
which i know will not work \b(Jan|Feb).*
I'm trying to match some word trying to ignoring the case sensitivity
For example
\b(Yes|No)
I need the my regex to find if the user enters Yes
Or YES
without case sensitivity
i tried to add .*
which i know will not work \b(Jan|Feb).*