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}
11378 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
/[-a-zA-Z0-9]+?/[-a-zA-Z]{3}