字符串处理

来源:互联网 发布:ws10b知乎 编辑:程序博客网 时间:2024/04/25 07:13
判断 – 通常返回一个bool值str.isalpha()是否只包含文字str.isdecimal()是否只包含数字(多语言数字)str.isdigit()是否只包含数字(0~9)str.isnumeric()是否只包含数字字符str.isalnum()是否只包含文字和数字str.isidentifier()是否是合法标识符str.islower()是否是小写str.isupper()是否全是大写str.istitle()是否每词首字母大写str.isprintable()是否只包含可打印字符str.isspace()是否只包含空白字符str.startswith(prefix[, start[, end]])是否以prefix开头str.endswith(suffix[, start[, end]])是否以suffix结尾修饰 – 通常返回一个修饰后的字符串str.capitalize()返回一个首字母大写的字符串str.title()返回每个词首字母大写的字符串str.expandtabs([tabsize])"\t"转换成空格str.upper()全转换成大写str.lower()全转换成小写str.ljust(width[, fillchar])左对齐,右填充str.rjust(width[, fillchar])右对齐,左填充str.center(width[, fillchar])居中,两边填充str.lstrip([chars])去除左空白或自定字符str.rstrip([chars])去除右空白或自定字符str.strip([chars])去除两边空白或自定字符str.swapcase()大小写互转str.zfill(width)左侧填充0到指定宽,一般用来修饰数字查找&&替换str.count(sub[, start[, end]])计算[start, end)间,sub出现次数str.find(sub[, start[, end]]) str.index(sub[, start[, end]]) str.rfind(sub[, start[, end]]) str.rindex(sub[, start[, end]]) str.replace(old, new[, count]) 拆分&&组合str.join(iterable) str.partition(sep) str.rpartition(sep) str.split([sep[, maxsplit]]) str.rsplit([sep[, maxsplit]]) str.splitlines([keepends]) 转换hex(x) int([number | string[, base]]) len(s) list([iterable]) oct(x) ord(c) repr(object) reversed(seq) str([object[, encoding[, errors]]]) 

↑TOP↑str.isalpha() – 是否只包含文字

代码结果print( "中国abc".isalpha() )Trueprint( " ".isalpha() )Falseprint( "123".isalpha() )Falseprint( "".isalpha() )False

↑TOP↑str.isdecimal() – 是否只包含十进制数字,包括多语言数字

代码结果print( "1234567890".isdecimal() )Trueprint( "\u0660".isdecimal() )Trueprint( "abc".isdecimal() )Falseprint( "".isdecimal() )False

关于其他语言的数字参见 http://www.fileformat.info/info/unicode/category/Nd/list.htm

↑TOP↑str.isdigit() – 是否只包含数字(0~9)

代码结果print( "1234567890".isdigit() )Trueprint( "\u0660".isdigit() )Trueprint( "abc".isdigit() )Falseprint( "".isdigit() )False

↑TOP↑str.isnumeric() – 是否只包含数字字符

代码结果print( "1234567890".isnumeric() )Trueprint( "\u2155".isnumeric() )Trueprint( "abc".isnumeric() )Falseprint( "".isnumeric() )False

关于数字字符参见 http://www.fileformat.info/info/unicode/category/No/list.htm

↑TOP↑str.isalnum() – 是否只包含文字和数字

代码结果print( "中国abc123456\u2155".isalnum() )Trueprint( " ".isalnum() )Falseprint( "\t".isalnum() )Falseprint( "".isalnum() )False

↑TOP↑str.isidentifier() – 是否是合法标识符

代码结果print( "if".isidentifier() )Trueprint( "中国".isidentifier() )Trueprint( "123".isidentifier() )Falseprint( "".isidentifier() )False

↑TOP↑str.islower() – 是否是小写

代码结果print( "abc".islower() )Trueprint( "aBc".islower() )Falseprint( "中国".islower() )Falseprint( "".islower() )False

↑TOP↑str.isupper() – 是否全是大写

代码结果print( "HELLO WORLD".istitle() )Trueprint( "Hello World".istitle() )Falseprint( "世界你好".istitle() )Falseprint( "".istitle() )False

↑TOP↑str.istitle() – 是否每词首字母大写

代码结果print( "Hello World".istitle() )Trueprint( "Hello world".istitle() )Falseprint( "hello world".istitle() )Falseprint( "".istitle() )False

↑TOP↑str.isprintable() – 是否只包含可打印字符

代码结果print( "a b".isprintable() )Trueprint( "".isprintable() )Trueprint( "abc\t".isprintable() )Falseprint( "abc\n".isprintable() )False

↑TOP↑str.isspace() – 是否只包含空白字符

代码结果print( " ".isspace() )Trueprint( "\t\n".isspace() )Trueprint( "a b".isspace() )Falseprint( "".isspace() )False

↑TOP↑str.startswith(prefix[, start[, end]]) – 是否以prefix开头

代码结果print( "中国人".startswith("中") )Trueprint( "中国人".startswith(("中国","我")) )True

↑TOP↑str.endswith(suffix[, start[, end]]) – 是否以suffix结尾

代码结果print( "中国人".endswith("人") )Trueprint( "中国人".endswith(("国人","我")) )True

↑TOP↑str.capitalize() – 返回一个首字母大写的字符串

代码print( "the first sentence. the second sentence.".capitalize() )结果The first sentence. the second sentence.

↑TOP↑str.title() – 返回每个词首字母大写的字符串

代码print( "this is a title".title() )结果This Is A Title

↑TOP↑str.expandtabs([tabsize]) – "\t"转换成空格

代码"\t".expandtabs(8)结果'        '

↑TOP↑str.upper() – 全转换成大写

代码print( "abc".upper() )结果ABC

↑TOP↑str.lower() – 全转换成小写

代码print( "ABC".upper() )结果abc

↑TOP↑str.ljust(width[, fillchar]) – 左对齐,右填充

代码print( "我".ljust(4,"们") )结果

我们们们

↑TOP↑str.rjust(width[, fillchar]) – 右对齐,左填充

代码print( "我".rjust(4,"=") )结果

===我

↑TOP↑str.center(width[, fillchar]) – 居中,两边填充

代码print( "我是分割线".center(30, "=") )结果============我是分割线=============

↑TOP↑str.lstrip([chars]) – 去除左空白或自定字符

代码'   spacious   '.lstrip()结果'spacious   '代码'www.example.com'.lstrip('cmowz.')结果'example.com'

↑TOP↑str.rstrip([chars]) – 去除右空白或自定字符

代码'   spacious   '.rstrip()结果'   spacious'代码'mississippi'.rstrip('ipz')结果'mississ'

↑TOP↑str.strip([chars]) – 去除两边空白或自定字符

代码'   spacious   '.strip()结果'spacious'代码'www.example.com'.strip('cmowz.')结果'example'

↑TOP↑str.swapcase() – 大小写互转

代码print( "Abc".swapcase() )结果aBC

↑TOP↑str.zfill(width) – 左侧填充0到指定宽,一般用来修饰数字

代码print( "15".zfill(8) )结果00000015代码print( "-15".zfill(8) )结果-0000015

↑TOP↑str.count(sub[, start[, end]]) – 计算[start, end)间,sub出现次数

代码print( "abababab" .count("abab" )结果2

注:非重叠计数,因此结果是2而不是3

0 0
原创粉丝点击