Skip to content

Instantly share code, notes, and snippets.

@raineorshine
Created August 9, 2016 21:26
Show Gist options
  • Save raineorshine/d10603abf882cf53936def8bf3355486 to your computer and use it in GitHub Desktop.
Save raineorshine/d10603abf882cf53936def8bf3355486 to your computer and use it in GitHub Desktop.
Convert Solidity function calls to camelCase
Find: function ([A-Z])
Replace: function \l\1
Find: \.(.)([^(\n]*)\(
Replace: .\l\1\2(
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment