Files
30-seconds-of-code/snippets/snake.md
Angelos Chalaris 6271c23754 Fix snake snippet
Resolves #114
2019-09-30 22:14:54 +03:00

628 B

title, tags
title tags
snake string,regexp,intermediate

Converts a string to snake case.

Break the string into words and combine them adding _-_ as a separator, using a regexp.

import re

def snake(str):
  return re.sub(r"(\s|_|-)+","_",
    re.sub(r"[A-Z]{2,}(?=[A-Z][a-z]+[0-9]*|\b)|[A-Z]?[a-z]+[0-9]*|[A-Z]|[0-9]+",
    lambda mo: mo.group(0).lower(),str)
  )
snake('camelCase') # 'camel_case'
snake('some text') # 'some_text'
snake('some-mixed_string With spaces_underscores-and-hyphens') # 'some_mixed_string_with_spaces_underscores_and_hyphens'
snake('AllThe-small Things') # "all_the_smal_things"