Kebabcase字符串
将字符串转换为kebab case(短横线连接的小写字符串)。
- 使用
re.sub()
函数,使用正则表达式r"(_|-)+"
将任何-
或_
替换为空格。 - 使用
re.sub()
函数匹配字符串中的所有单词,并使用str.lower()
将它们转换为小写。 - 最后,使用
str.join()
函数将所有单词使用-
作为分隔符连接起来。
from re import sub
def kebab(s):
return '-'.join(
sub(r"(\s|_|-)+"," ",
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(), s)).split())
kebab('camelCase') # 'camel-case'
kebab('some text') # 'some-text'
kebab('some-mixed_string With spaces_underscores-and-hyphens')
# 'some-mixed-string-with-spaces-underscores-and-hyphens'
kebab('AllThe-small Things') # 'all-the-small-things'