Skip to content

Instantly share code, notes, and snippets.

@shangdawei
Created October 16, 2017 12:08
Show Gist options
  • Save shangdawei/599fdc2c7aa693d26973954a3882b581 to your computer and use it in GitHub Desktop.
Save shangdawei/599fdc2c7aa693d26973954a3882b581 to your computer and use it in GitHub Desktop.
RegEx Convert Upper to Case
TextPad will allow you to perform this operation.
example:
test this sentence
Find what: \([^ ]*\) \(.*\) Replace with: \U\1\E \2
the \U will cause all following chars to be upper
the \E will turn off the \U
the result will be:
TEST this sentence
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment