regex help needed
I need to have an expression that looks for extensions that are ONLY between 0 and 9 digits. Here is what I have that does not work.
[0-9]{0,9}$. It matches everything that is longer than 9 digits as well. Anyone have any suggestions?