Python字符串处理

1.字符串之find()方法查找

Python 提供了内置的字符串查找方法find(),利用该方法可以在一个较长的字符串中查找子字符串。如果该字符串中,有一个或者多个子字符串,则该方法返回第一个子串所在位置的最左端索引,若没有找到符合条件的子串,则返回-1。

find()方法的基本使用语法如下:

source_string.find(sub_string)

其中:

source_string:源字符串;
sub_string:待查的目标子字符串;
find:字符串查找方法的语法关键字。

例如,在一个字符串中,查找两个单词的位置:

# coding=utf-8
# 创建或者定义一个字符串  
source_string = 'The past is gone and static'
# 查看"past"在source_string字符串中的位置  
print(source_string.find('past'))
# 查看"love"在source_string字符串中的位置  
print(source_string.find('love'))  

输出结果:

4  
-1  

2.字符串之replace()方法替换

Python 提供了**replace()**方法,用以替换给定字符串中的子串。

其基本使用语法如下:

source_string.replace(old_string, new_string)  

其中:

source_string:待处理的源字符串;
old_string:被替换的旧字符串;
new_string:替换的新字符串;
replace:字符串替换方法的语法关键词。

例如,在如下字符串中,用small子串替换big子串:

# coding = utf-8
# 创建一个字符串circle  
source_string = 'The world is big'
# 利用replace()方法用子串"small"代替子串"big"  
print(source_string.replace('big','small'))  

输出结果:

The world is small  

3.字符串之split()方法分割

Python 提供了**split()**方法实现字符串分割。该方法根据提供的分隔符,将一个字符串分割为字符列表,如果不提供分隔符,则程序会默认把空格(制表、换行等)作为分隔符。
其基本使用语法如下:

source_string.split(separator)  

其中:

source_string:待处理的源字符串;
separator:分隔符;
split:字符串分割方法的关键词。

例如,用+、/还有空格作为分隔符,分割字符串:

# coding = utf-8
# 待处理字符串source_string  
source_string = '1+2+3+4+5'
# 利用split()方法,按照`+`和`/`对source_string字符串进行分割  
print(source_string.split('+'))  
print(source_string.split('/'))  

输出结果:

['1', '2', '3', '4', '5']  
['1+2+3+4+5']  

4.字符串之len()函数获取长度

Python 提供了len()函数来计算,并返回字符串的长度,即字符串中单个元素的个数。

其基本语法如下:

length = len(target_string)  

其中:

target_string: 目标字符串变量;
length: 保存字符串长度的变量;
len: 获取字符串长度的语法关键词。

下面给出了具体的使用示例:

# coding=utf-8
# 创建一个字符串变量,获取其长度并打印出来  
color = 'It is red'  
length = len(color)  
print (length)
# 直接在len函数中引入字符串内容获得其长度,然后打印出来  
print(len('This is a circle!'))  

输出结果:

9  
17  

注意: 从输出结果可以看到,空格也占一个字符元素的位置。

5.大小写转换

Python 提供了upper()和lower()方法,来对字符串进行大小写转换。其中,upper()会将字符串中的所有字符都转换为大写,lower()则将所有字符转换为小写。除此之外,Python 还贴心的提供了title()方法,将字符串所有单词的首字母变成大写,而其他字母依然小写。

各个方法的具体语法如下:

# 将源字符串转换为大写并存入upper_string变量  
upper_string = source_string.upper()
# 将源字符串转换为小写并存入lower_string变量  
lower_string = source_string.lower()
# 将源字符串每个词首字母转换为大写并存入title_string变量  
title_string = source_string.title()  

其中,source_string为待处理的源字符串。具体使用示例如下:

# coding=utf-8
# 创建一个字符串say_hello  
say_hello = 'Dear my Daughter'
# 使用upper()方法对say_hello字符串进行处理  
upper_say_hello = say_hello.upper()
# 使用lower()方法对say_hello字符串进行处理  
lower_say_hello = say_hello.lower()
# 使用title()方法对say_hello字符串进行处理  
title_say_hello = say_hello.title()
# 打印输出四个字符串  
print (say_hello+"\n")  
print (upper_say_hello+"\n")  
print (lower_say_hello+"\n")  
print (title_say_hello+"\n")  

输出结果:

Dear my Daughter  
DEAR MY DAUGHTER  
dear my daughter  
Dear My Daughter  

注意: 由上述打印结果可以看出,上述方法的调用,并不会对原始的 say_hello字符串产生影响,转换后的字符串会存入新的变量中。

6.strip()方法,去除字符串首尾空格

Python 提供了strip()方法,可以去除字符串两侧(不包含内部)全部的空格。使用该方法,也可以通过指定参数,去除两侧指定的特定字符。

注意:在指定参数时,如果参数是多个字符,则该方法会将多个字符逐个去比对,进行删除(区分大小写),直到首尾两侧没有匹配的字符为止。但是,该方法对字符串中间的字符没有影响。

其基本语法如下:

strip_string1 = source_string.strip()  
string_strip2 = source_string.strip(target_char)  

其中:

source_string:待处理的源字符串;
strip_string1和strip_string2:处理后的字符串;
target_char:需要从源字符串首尾去除的特定字符。

具体使用示例如下:

# coding = utf-8
# 创建一个字符串hello_world  
hello_world = '  **The world ** is big!*    '
# 利用strip()方法处理hello_world字符串  
blank_hello_world = hello_world.strip()  
char_hello_world = hello_world.strip('TH *')
# 打印输出转换后的字符串  
print(blank_hello_world)  
print(char_hello_world)  

输出结果:

**The world ** is big!*  
he world ** is big!  
  • 7
    点赞
  • 20
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

小廖同志_

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值