If I have a vector:
Months = month.abb[1:12]
I want to extract all the months that start with Letter J (in this case, Jan, Jun, and Jul).
Is there a wildcard character, like * in Excel, which lists all elements of vectors which you search for J*?
How do I extract elements that start with either letter 'M' or 'A'. The expected output would be Mar,May,Apr,Aug?