GREP searching in BBEdit
The following will find any lines that have text like this: /anynumberoflettersortext/ABC - where ABC is any three letters, uppercase or lowercase, but no more than 3.
/[-a-zA-Z0-9]+?/[-a-zA-Z]{3}
DZone Snippets > nothingless > grep
12309 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Sasha http://nothing-less.net
/[-a-zA-Z0-9]+?/[-a-zA-Z]{3}