Skip to content

Instantly share code, notes, and snippets.

@tlinkner
Created April 4, 2013 20:10
Show Gist options
  • Select an option

  • Save tlinkner/5313870 to your computer and use it in GitHub Desktop.

Select an option

Save tlinkner/5313870 to your computer and use it in GitHub Desktop.
BBedit grep pattern to replace uppercase words with lowercase words wrapped in <em>.
# Find
([A-Z]{3,})
# Replace
<em>\L\1</em>
# Matching: Case sensitive
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment