Skip to content

Instantly share code, notes, and snippets.

@filevich
Created April 21, 2023 06:12
Show Gist options
  • Save filevich/8ce1ec36837976612820b73a7ab791c7 to your computer and use it in GitHub Desktop.
Save filevich/8ce1ec36837976612820b73a7ab791c7 to your computer and use it in GitHub Desktop.
pascal to lower snake case in python
import re
s = lambda txt: re.sub(r'(?<!^)(?=[A-Z])', '_', txt).lower()
# eg: s("FooBarBaz") returns "foo_bar_baz"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment