I want to check my string if it is in fullmonthname year format.
For example
When $x= September 2015; //valid, output should be true
When $x=Sept 2015; //invalid, output should be false
How do I achieve this?
I want to check my string if it is in fullmonthname year format.
For example
When $x= September 2015; //valid, output should be true
When $x=Sept 2015; //invalid, output should be false
How do I achieve this?