I'm trying to change a lot of URLs with TextWrangler, those ending with m.htm
should lose the m
, but only if the total number of characters in the filename is 7. Those with fewer characters should not be changed.
I've tried
/.*?{7}m.htm/
but it doesn't work...
What is the solution?