分割单词
将一个标识符分割成若干单词存进列表,便于后续命名法的转换
先引入正则表达式包
import re
至于如何分割单词看个人喜好,如以常见分隔符 “ ”、“_”、“-”、“/”、“\” 去分割
re.split('[ _\-/\\\\]+', name)
还可以范围再广一点,拿除了数字和字母以外的所有字符去分割
re.split('[^0-9a-zA-Z]', name)
那对于字母内部怎么分割呢?
综合考虑驼峰命名法、连续大写的缩写单词等,笔者根据经验一般会采用这种策略,连续比较三个字符,满足以下条件之一就分割:“小|大无”、“有|大小”、“小|大有”
是尾字符,是大写,倒数第二个字符是小写,在尾字符前分割,比如 'getA' 分割成 ['get','A']
是非首位的中间字符,是大写,前后至少有一个是小写,在该字符前分割,比如 'getJSONString' 分割成 ['get','JSON','String']
对于字母和数字结合的标识符,就比较难处理了
因为有的数字可以作为单词开头(比如 '3D'),有的又可以作为结尾(比如 'HTML5'),还有的字母数字交错(比如 'm3u8'),暂未想到通用的分割的好办法,根据个人需求实现就行了
综合以上几者的分割函数如下
def to_words(name): words = [] # 用于存储单词的列表 word = '' # 用于存储正在构建的单词 if(len(name) <= 1): words.append(name) return words # 按照常见分隔符进行分割 # name_parts = re.split('[ _\-/\\\\]+', name) # 按照非数字字母字符进行分割 name_parts = re.split('[^0-9a-zA-Z]', name) for part in name_parts: part_len = len(part) # 字符串的长度 word = '' # 如果子串为空,继续循环 if not part: continue for index, char in enumerate(part): # “小|大无” if(index == part_len - 1): if(char.isupper() and part[index-1].islower()): if(word): words.append(word) words.append(char) word = '' continue # “有|大小”或“小|大有” elif(index != 0 and char.isupper()): if((part[index-1].islower() and part[index+1].isalpha()) or (part[index-1].isalpha() and part[index+1].islower())): if(word): words.append(word) word = '' word += char if(len(word) > 0): words.append(word) # 去除空单词 return [word for word in words if word != '']
测试用例如下
print(to_words('IDCard')) # ['ID', 'Card'] print(to_words('getJSONObject')) # ['get', 'JSON', 'Object'] print(to_words('aaa@bbb.com')) # ['aaa', 'bbb', 'com'] print(to_words('D://documents/data.txt')) # ['D', 'documents', 'data', 'txt']
分割成全小写单词
def to_lower_words(name): words = to_words(name) return [word.lower() for word in words]
分割成全大写单词
def to_upper_words(name): words = to_words(name) return [word.upper() for word in words]
分割成首大写、其余小写单词
def to_capital_words(name): words = to_words(name) return [word.capitalize() for word in words]
转中划线命名法
中划线命名法,也叫烤肉串命名法(kebab case),如 'kebab-case'
字母全小写
连字符连接
def to_kebab_case(name): words = to_lower_words(name) to_kebab_case = '-'.join(words) return to_kebab_case
转小蛇式命名法
小蛇式命名法,其实就是小写下划线命名法,也叫蛇式命名法(snake case),如 'snake_case'
字母全小写
下划线连接
def to_snake_case(name): words = to_lower_words(name) snake_case_name = '_'.join(words) return snake_case_name
转大蛇式命名法
大蛇式命名法,其实就是大写下划线命名法,也叫宏命名法(macro case),如 'MACRO_CASE'
字母全大写
下划线连接
def to_macro_case(name): words = to_upper_words(name) snake_case_name = '_'.join(words) return snake_case_name
转小驼峰命名法
小驼峰命名法,也叫驼峰命名法(camel case) ,如 'camelCase'
首单词首字母小写,后每个单词首字母大写
不使用连接符
def to_camel_case(name): words = to_words(name) camel_case_words = [] for word in words: if len(word) <= 1: camel_case_words.append(word.upper()) else: camel_case_words.append(word[0].upper() + word[1:]) camel_case = ''.join(camel_case_words) if len(camel_case) <= 1: camel_case = camel_case.lower() else: camel_case = ''.join(camel_case[0].lower() + camel_case[1:]) return camel_case
转大驼峰命名法
大驼峰命名法,也叫帕斯卡命名法(pascal case) ,如 'PascalCase'
每个单词首字母大写
不使用连接符
def to_pascal_case(name): words = to_words(name) pascal_case_words = [] for word in words: if len(word) <= 1: pascal_case_words.append(word.upper()) else: pascal_case_words.append(word[0].upper() + word[1:]) pascal_case = ''.join(pascal_case_words) return pascal_case
The above is the detailed content of How to split words and convert naming in Python. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download
The most popular open source editor

Notepad++7.3.1
Easy-to-use and free code editor
