Python探索记(10)——字符串(下)

简介: 关于字符串的常见操作,请参见如下示例:# @Time : 2017/7/2 21:26# @Author : 原创作者:谷哥的小弟# @Site : 博客地址:http://blog.

关于字符串的常见操作,请参见如下示例:

# @Time    : 2017/7/2 21:26
# @Author  : 原创作者:谷哥的小弟
# @Site    : 博客地址:http://blog.csdn.net/lfdfhl
# @DESC    : String常见操作

string='hello,my name is hanmeimei'
'''
find()
判断子串是否在String中,若存在则返回子串在String中开始的索引值,否则返回-1
rfind()类似于find()函数,不过是从右边开始查找.
'''
index1=string.find('llo')
print('index1=',index1)

#利用第二个,第三个参数指定判断的范围
index2=string.find('llo',0,10)
print('index2=',index2)

index3=string.find('llo',7,13)
print('index3=',index3)
print('= '*15)

'''
count()
统计子串在String中出现的次数
'''
count1=string.count('m')
#利用第二个,第三个参数指定统计的范围
count2=string.count('m',0,8)
print('count1=',count1)
print('count2=',count2)
print('= '*15)

'''
replace()
把string中的str1替换成str2,如果count指定,则替换次数不超过count
'''
replaceResult1=string.replace('mei','XX')
print('replaceResult1=',replaceResult1)
replaceResult2=string.replace('mei','XX',1)
print('replaceResult2=',replaceResult2)
print('string=',string)
print('= '*15)

'''
split()
以str为分隔符切割string,可用maxsplit指定分割次数,即分隔成 maxsplit + 1 个子字符串
'''
fragment1=string.split(' ')
print('fragment1=',fragment1)
fragment2=string.split(' ',2)
print('fragment2=',fragment2)
print('= '*15)

'''
startswith()
判断string是否以str开头
'''
result1=string.startswith('hello')
result2=string.startswith('ello')
print('result1=',result1)
print('result2=',result2)
print('= '*15)

'''
endsWith()
判断string是否以str结尾
'''
result3=string.endswith('mei')
result4=string.endswith('xxx')
print('result3=',result3)
print('result4=',result4)
print('= '*15)

'''
upper()
将string中字母变成大写
'''
upperString=string.upper()
print('upperString=',upperString)
print('= '*15)

'''
lower()
将string中字母变成小写
'''
lowerString=upperString.lower()
print('lowerString=',lowerString)
print('= '*15)


'''
strip()
删除字符串两端的空格。
类似的方法有lstrip(),rstrip()删除字符串左侧,右侧的空格
'''
name=' Hello all '
stripResult=name.strip()
print('stripResult=',stripResult)
print('= '*15)

'''
partition()
把string以str分割成三部分,str前,str和str后
rpartition()类似于 partition()函数,不过是从右边开始.
'''
fragments=string.partition('llo')
print('fragments=',fragments)
print('= '*15)

'''
splitlines()
按照行分隔即\n,返回一个包含各行作为元素的列表
'''
lines="good\nmorning\nsir"
resultLines=lines.splitlines()
print('resultLines=',resultLines)
print('= '*15)

'''
isalpha()
判断string中是否全为字母
'''
isalpha=string.isalpha()
print('isalpha=',isalpha)
print('= '*15)

'''
isdigit()
判断string中是否全为数字
'''
digitString='123456789'
isdigit=digitString.isdigit()
print('isdigit=',isdigit)
print('= '*15)

'''
join()
str.join(sequence)将字符串、元组、列表中的元素以指定的字符(str)连接生成一个新的字符串
'''
str='_'
sequence=['Hello','Everyone','Thanks']
joinResult=str.join(sequence)
print('joinResult=',joinResult)
print('= '*15)

测试结果如下:

index1= 2
index2= 2
index3= -1
= = = = = = = = = = = = = = = 
count1= 4
count2= 1
= = = = = = = = = = = = = = = 
replaceResult1= hello,my name is hanXXXX
replaceResult2= hello,my name is hanXXmei
string= hello,my name is hanmeimei
= = = = = = = = = = = = = = = 
fragment1= ['hello,my', 'name', 'is', 'hanmeimei']
fragment2= ['hello,my', 'name', 'is hanmeimei']
= = = = = = = = = = = = = = = 
result1= True
result2= False
= = = = = = = = = = = = = = = 
result3= True
result4= False
= = = = = = = = = = = = = = = 
upperString= HELLO,MY NAME IS HANMEIMEI
= = = = = = = = = = = = = = = 
lowerString= hello,my name is hanmeimei
= = = = = = = = = = = = = = = 
stripResult= Hello all
= = = = = = = = = = = = = = = 
fragments= ('he', 'llo', ',my name is hanmeimei')
= = = = = = = = = = = = = = = 
resultLines= ['good', 'morning', 'sir']
= = = = = = = = = = = = = = = 
isalpha= False
= = = = = = = = = = = = = = = 
isdigit= True
= = = = = = = = = = = = = = = 
joinResult= Hello_Everyone_Thanks
= = = = = = = = = = = = = = = 
相关文章
|
22天前
|
Python
在 Python 中,如何将日期时间类型转换为字符串?
在 Python 中,如何将日期时间类型转换为字符串?
119 64
|
4月前
|
存储 算法 数据库
使用python hashlib模块给明文字符串加密,以及如何撞库破解密码
`hashlib` 是 Python 中用于实现哈希功能的模块,它可以将任意长度的输入通过哈希算法转换为固定长度的输出,即散列值。该模块主要用于字符串加密,例如将用户名和密码转换为不可逆的散列值存储,从而提高安全性。`hashlib` 提供了多种哈希算法,如 `md5`、`sha1`、`sha256` 等。
68 1
|
14天前
|
存储 测试技术 Python
Python 中别再用 ‘+‘ 拼接字符串了!
通过选择合适的字符串拼接方法,可以显著提升 Python 代码的效率和可读性。在实际开发中,根据具体需求和场景选择最佳的方法,避免不必要的性能损失。
38 5
|
18天前
|
Python
使用Python计算字符串的SHA-256散列值
使用Python计算字符串的SHA-256散列值
24 7
|
24天前
|
Python
在 Python 中,如何将字符串中的日期格式转换为日期时间类型?
在 Python 中,如何将字符串中的日期格式转换为日期时间类型?
32 6
|
2月前
|
Python
【10月更文挑战第6天】「Mac上学Python 11」基础篇5 - 字符串类型详解
本篇将详细介绍Python中的字符串类型及其常见操作,包括字符串的定义、转义字符的使用、字符串的连接与格式化、字符串的重复和切片、不可变性、编码与解码以及常用内置方法等。通过本篇学习,用户将掌握字符串的操作技巧,并能灵活处理文本数据。
60 1
【10月更文挑战第6天】「Mac上学Python 11」基础篇5 - 字符串类型详解
|
3月前
|
Python
python获取字符串()里面的字符
在Python中,如果你想获取字符串中括号(比如圆括号`()`、方括号`[]`或花括号`{}`)内的字符,你可以使用正则表达式(通过`re`模块)或者手动编写代码来遍历字符串并检查字符。 这里,我将给出使用正则表达式的一个例子,因为它提供了一种灵活且强大的方式来匹配复杂的字符串模式。 ### 使用正则表达式 正则表达式允许你指定一个模式,Python的`re`模块可以搜索字符串以查找匹配该模式的所有实例。 #### 示例:获取圆括号`()`内的内容 ```python import re def get_content_in_parentheses(s): # 使用正则表达
115 36
|
2月前
|
自然语言处理 Java 数据处理
【速收藏】python字符串操作,你会几个?
【速收藏】python字符串操作,你会几个?
61 7
|
2月前
|
索引 Python
Python 高级编程:深入探索字符串切片
在Python中,字符串切片功能强大,可灵活提取特定部分。本文详细介绍切片技巧:基本切片、省略起始或结束索引、使用负数索引、设定步长及反转字符串等。此外,还介绍了如何结合其他操作进行切片处理,如先转换大小写再提取子串。 来源:https://www.wodianping.com/yeyou/2024-10/48238.html
46 4
|
3月前
|
Python
python第三方库-字符串编码工具 chardet 的使用(python3经典编程案例)
这篇文章介绍了如何使用Python的第三方库chardet来检测字符串的编码类型,包括ASCII、GBK、UTF-8和日文编码的检测示例。
156 6
下一篇
DataWorks