(原创)Python字符串系列(1)——str对象

  在本博客 《Python字符串系列》 中,将介绍以下内容:

  1. Python内置的str对象及操作
  2. 字符串的格式化
  3. Python中的Unicode字符串
  4. Python中的正则表达式
  5. re模块

  本文将介绍Python内置的 str 类型,列举Python中字符串对象支持的方法,使用这些方法可以实现强大的字符串处理功能。

  在Python 2 中,普通字符串与Unicode字符串有着明确的区分,二者都是Python内置的基本类型,例如:

>>> type(str)
<type ‘type‘>
>>> type(unicode)
<type ‘type‘>

  str 类型的字符串通常被称为普通字符串(plain string),区别于 unicode 类型的字符串(unicode string):

>>> s = ‘this is a plain string.‘
>>> type(s)
<type ‘str‘>
>>> u = u‘this is a unicode string.‘
>>> type(u)
<type ‘unicode‘>

  unicode字符串通常以 ‘u‘ 开头。

  在Python 2中,使用 抽象基类 basestring 判断一个字符串是不是 str 类型或者 unicode 类型的实例,因为二者都是 basestring 的子类。

>>> issubclass(str, basestring)
True
>>> issubclass(unicode, basestring)
True
>>> issubclass(unicode, str)
False

  本文将介绍Python字符串的内置方法,这些方法对于 plain string 和 unicode 字符串同样适用,如果执行操作的s是一个plain string,那么返回的字符串也是一个plain string,unicode类似。后续的文章将详细分析 unicode 字符串的特性及编码上的一些特点。

  Python中,字符串是不可变的序列,支持:重复、连接、索引和切片等操作,例如:

>>> s * n    # 将 s 重复n次
>>> s1 + s2    # 将字符串 s1 和 s2 连接
>>> s[0]    # 索引字符串 s1 中的第一个字符
>>> s[0:2]    # 返回字符串 s 中的前两个字符

  这些操作都不会改变参与运算的字符串,除非进行显式地赋值。此外,Python还包括了许多字符串处理的小技巧,如:

  • 使用s[::-1]可以翻转整个字符串
  • 如果一个字符串全部由数字组成,而开头有0,则使用 int(s) 能够自动除去开头的0,将原来的字符串转成一个有意义的整数。

  

Python内置了丰富的字符串处理功能

1. 首字母大写

capitalize()

s.capitalize()

  返回s的一份拷贝,并不改变s。如果 s 的首字符是一个字母,则拷贝的首字母将其改成大写,其余所有字母转成小写。

例如:

>>> ‘this is a test string.‘.capitalize()
‘This is a test string.‘
>>> ‘_this is a test string.‘.capitalize()# 开头不是字母,不变
‘_this is a test string.‘
>>> ‘this is A test string.‘.capitalize()# 除开头外的其他位置上的字母全转成小写
‘This is a test string.‘

  

2. 对齐方式

(1)左右对齐  ljust()、rjust()

s.ljust(width[, fillchar])s.rjust(width[, fillchar])

  返回一个长度为 max(len(s), width) 的字符串,如果 width > len(s),则左/右对齐,并在另一端填充 fillchar

例如:

>>> ‘1234‘.rjust(8, ‘#‘)
‘####1234‘
>>> ‘1234‘.ljust(8, ‘#‘)
‘1234####‘
>>> ‘1234‘.ljust(2, ‘#‘)
‘1234‘

(2)居中  center()

s.center(n, fillchar=‘ ‘)

  返回一个新的字符串,新字符串的长度为 max(len(s), n),当 n > len(s)时,使用参数 fillchar (默认为空格)填充新字符串中其余的位置,并将 s 置于新字符串的中部。

例如:

>>> ‘test‘.center(3)
‘test‘
>>> ‘test‘.center(5)
‘ test‘
>>> ‘test‘.center(6, ‘#‘)
‘#test#‘
>>> ‘test‘.center(7, ‘~‘)
‘~~test~‘

  可见当左右无法均衡填充时,优先填充左侧。

3. 计数

count()

s.count(sub, start=0, end=sys.maxint)

  统计 s[start:end] 中,子串 sub 出现的次数。

4. str 与 unicode 的转换

(1)str到unicode——decode()

S.decode([encoding[,errors]])

  使用 decode() 函数可以将 str 类型的plain string 转换成 unicode 类型的字符串,

例如:

>>> s = ‘你好‘
>>> u = s.decode(‘gbk‘)
>>> type(s)
<type ‘str‘>
>>> type(u)
<type ‘unicode‘>
>>> print s
你好
>>> print u
你好
>>> s
‘\xc4\xe3\xba\xc3‘
>>> u
u‘\u4f60\u597d‘
>>> len(s)
4
>>> len(u)
2

  

(2)Unicode 到 str——encode()

S.encode([encoding[,errors]])

  使用encode()则可以将 unicode 字符串 转换成 str 类型的 plain string。

例如:

>>> u = u‘你好‘
>>> s = u.encode(‘gbk‘)
>>> type(u)
<type ‘unicode‘>
>>> type(s)
<type ‘str‘>
>>> u
u‘\u4f60\u597d‘
>>> s
‘\xc4\xe3\xba\xc3‘
>>> print u
你好
>>> print s
你好
>>> len(u)
2
>>> len(s)
4

5. 前后缀

endswith()、startswith()

S.endswith(suffix[, start[, end]])s.startswith(prefix[, start[, end]])

  返回 bool 型结果,

  判断 s[start:end]是否以 suffix 结尾。

6. 扩展制表符

expandtabs()

S.expandtabs([tabsize])

  tabsize默认为8,返回一个 s 的拷贝,其中的“\t”都被扩展成 tabsize 个空格。

例如:

>>> ‘test\ttest‘.expandtabs()
‘test    test‘

  

7. 定位

(1)定位不到时返回 -1  find()、rfind()

s.find(sub [,start [,end]])s.rfind(sub [,start [,end]])

  返回 int 型结果,表示 sub 在 s[start:end] 中第一次出现的下标。如果在 s[start:end] 中没有找到子串 sub,则返回 -1。

例如:

>>> ‘testtest‘.find(‘est‘)
1
>>> ‘testtest‘.find(‘tt‘)
3
>>> ‘testtest‘.find(‘tt‘,3)
3
>>> ‘testtest‘.find(‘tt‘,4)
-1

 

(2)定位不到时抛出异常  index()、rindex()

S.index(sub [,start [,end]])s.rindex(sub [,start [,end]])

  功能与 find() 类似,但是如果没有找到 sub ,则抛出 ValueError。

例如:

>>> ‘hello this world‘.index(‘$‘)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: substring not found

  

8.

format()

S.format(*args, **kwargs)

  返回 字符串 型结果,

9. 内容形式判断

isalnum()、isalpha()、isdigit()、isspace()

s.isalnum()

  返回布尔型结果,

  判断 s 是不是非空,且全部由 字母 和 数字 组成。

s.isalpha()

  返回布尔型结果,

  判断 s 是不是非空,且全部由 字母 组成。

s.isdigit()

  返回布尔型结果,

  判断 s 是不是非空,且全部由 数字 字符组成。

例如:

>>> ‘123‘.isdigit()
True
>>> ‘123.456‘.isdigit()
False

  

s.isspace()

  如果 len(s) > 0,且其中的所有字符都是空格,则返回True;

  如果 s 为空,或s中存在至少一个非空格的字符,则返回False。

10. 大小写

(1)小写  islower()、lower()

s.islower()s.lower()

  返回布尔型结果,

  如果 s 中不含一个小写字母,或至少含有一个大写字母,则返回False,否则返回True,包含其他字符并不影响。

例如:

>>> ‘123.456‘.islower()
False
>>> ‘abcde‘.islower()
True
>>> ‘abcde$‘.islower()
True
>>> ‘abcde#%^%‘.islower()
True
>>> ‘abcdeF‘.islower()
False
>>> ‘a.213214$#@^%[email protected]‘.islower()
True

(2)大写  isupper()、upper()

s.isupper()s.upper()

  如果 s 中包含的所有字母都是大写,则返回 True

  如果s 中不包含字母,或者至少包含一个小写字母,则返回False。

例:

>>> ‘[email protected]‘.isupper()
True
>>> ‘ASDFGq‘.isupper()
False
>>> ‘‘.isupper()
False

  

(3)交换大小写  swapcase()

s.swapcase()

  

11. "titlecase"

istitle()title()

s.istitle()s.title()

  判断一个字符串是不是“titlecase”:每个独立的连续字母段都以大写字母开头。

例如:

>>> ‘A Title‘.istitle()
True
>>> ‘a Title‘.istitle()
False
>>> ‘123 this is a string‘.istitle()
False
>>> ‘This Is a String‘.istitle()
False

  

12. 连接

join()

s.join(iterable)

  以 s 为分隔符连接 iterable 中的字符串

例如:

>>> ‘$‘.join([‘hello‘,‘this‘,‘world‘])
‘hello$this$world‘

  

13. 拆分

(1)保留分隔符的一次拆分  partition()rpartition()

s.partition(sep)s.rpartition(sep)

  以 sep 为分隔符拆分 s ,返回 (head, sep, tail) 形式的三元组。

例如:

>>> ‘hello$this$world‘.partition(‘$‘)
(‘hello‘, ‘$‘, ‘this$world‘)
>>> ‘hello$this$world‘.rpartition(‘$‘)
(‘hello$this‘, ‘$‘, ‘world‘)>>> ‘hello this world‘.partition(‘$‘)(‘‘, ‘‘, ‘hello this world‘)

  

(2)不保留分隔符的完全拆分  split()rsplit()splitlines()

s.split([chars])s.rsplit([sep [,maxsplit]])s.splitlines(keepends=False)

例如:

>>> ‘hello$this$world‘.split(‘$‘)
[‘hello‘, ‘this‘, ‘world‘]

  

14. 

lstrip()、strip()rstrip()

s.lstrip([chars]) #从开头删除
s.strip([chars]) # 左右两端同时删除
s.rstrip([chars]) # 从结尾删除

  

16. 替换

replace()

s.replace(old, new[, count])

18.

translate()

s.translate(table [,deletechars])

  

19.

zfill()

s.zfill(width)

  

时间: 2024-12-13 14:48:38

(原创)Python字符串系列(1)——str对象的相关文章

Python坑系列:可变对象与不可变对象

在之前的文章 http://www.cnblogs.com/bitpeng/p/4748148.html 中,大家看到了ret.append(path) 和ret.append(path[:])的巨大差别.这和Python的对象机制有关.现在谈谈这个问题! 我们知道,Python有可变对象和不可变对象,他们的表现行为也迥然不同.先来几个简单的问题: 1 def foo1(arg): 2 arg = 5 3 print(arg) 4 5 x = 1 6 foo(x) # 输出5 7 print(x

Python基础系列----序列(列表、元组、字符串)

1.定义                                                                                               1.数据结构:通过某种方式组织在一起的数据元素的集合.这些数据元素可以说数字或者字符,甚至可以是其他数据结构.在python中,最基本的数据结构是序列. 2.索引:序列中的每个元素被分配一个序号.注意索引默认从0开始. 在python中,内建了6中序列:列表.元组.字符串.unicode字符串.buf

【python基础】之str类字符串

str类字符串是不可变对象 1.创建字符串 s1 = str() #创建一个空字符串 s2 = str("hello") #创建字符串"hello" 2.处理字符串的常用函数和操作 (1).函数 len() 返回一个字符串的字符个数 max() 返回字符串中最大的字符 min() 返回字符串中最小的字符 >>>s = "Welcome" >>>len(s) 7 >>>max(s) 'o' &g

Python数据结构之字符串类型(str)

字符串类型(str) 字符串说明 转义字符 字符串运算符 字符串格式化 字符串内置的函数 一.字符串说明 字符串是 Python 中最常用的数据类型.我们可以使用引号('或")来创建字符串. 创建字符串,只需要为变量赋值即可,如:Str = "hello world" 访问字符串中的值: Python 不支持单字符类型,单字符在 Python 中也是作为一个字符串使用. >>> print("hello world") hello wor

Python学习系列(三)(字符串)

Python学习系列(三)(字符串) 一个月没有更新博客了,最近工作上有点小忙,实在是没有坚持住,丢久又有感觉写的必要了,可见本人的坚持精神不佳,本系列没有任何目的,纯属业余学习,或者说是一时兴趣所致.通过本文,能够学习字符串的基本操作,日积月累,多多练习,学到了,会用了才是王道. 一.基本概念 1,关于转义问题 1)"''"方式: >>> s="Hello 'Jack'--" >>> print s Hello 'Jack'--

python 字符串编码 str和unicode 区别以及相互转化 decode(&#39;utf-8&#39;) encode(&#39;utf-8&#39;)

python 字符串编码 str和unicode 区别以及相互转化 decode('utf-8') encode('utf-8') 原文地址:https://www.cnblogs.com/zhaoyingjie/p/9133020.html

Python学习系列(九)(IO与异常处理)

Python学习系列(九)(IO与异常处理) Python学习系列(八)( 面向对象基础) 一,存储器 1,Python提供一个标准的模块,称为pickle,使用它既可以在一个文件中存储任何Python对象,又可以把它完整的取出来,这被称为持久的存储对象.类似的,还有一个功能与之相同的模块—cPickle,用c语言编写的,速度比pickle快1000倍. 2,示例: 1 import cPickle as p 2 shoplistfile='shoplist.data' 3 shoplist=[

Python学习系列(四)Python 入门语法规则2

Python学习系列(四)Python 入门语法规则2 2017-4-3 09:18:04 编码和解码 Unicode.gbk,utf8之间的关系 2.对于py2.7, 如果utf8>gbk, utf8解码成Unicode,再将unicode编码成gbk 对于py3.5 如果utf8>gbk, utf8 直接编码成gbk(中间那一步直接被优化了) 3.很多时候,这个可以直接跳过,只有当编码出下问题的时候,再考虑这个知识点 二.运算符 1.算数运算: 2.比较运算: 3.赋值运算: 4.逻辑运算

python篇1.12---面向对象进阶

一.isinstance(obj,cls) 和 issubclass(sub,super) 1.isinstance(obj,cls)  检查obj是否是 cls的对象 class Foo(object): pass obj = Foo() print(isinstance(obj,Foo)) 2.issubclass(sub,super)检查sub类 是否是 super类的 派生类 class Foo(object): pass class Bar(Foo): pass print(issub