python查找字符串是否存在实例详解

python中查找指定的字符串的方法如下:

code

#查询
def selstr():
sstr1 = ‘jsjtt.com’
sstr2 = ‘com’
#index查询某个字符串,返回索引
npos = sstr1.index(sstr2)
if(npos >=0):
print ‘sstr1中包括sstr2中的字符’
print npos
#find 方法如果没有查询到返回-1
npos2 = sstr1.find(‘abc’)
print npos2
#查询到返回字符所在位置
print sstr1.find(‘com’)
selstr();

python分割字符串

def split():
sstr1 = ‘ab,cde,fgh,ijk’
sstr2 = ‘,’
#用find查找逗号所在的索引位置
sstr1 = sstr1[sstr1.find(sstr2) + 1:]
print sstr1
#使用split函数分割字符串
s = ‘ab,cde,fgh,ijk’
result = s.split(‘,’)
print(result)
print(result[0])
split();

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

更多python 查找字符串是否存在实例详解相关文章请关注php中文网!

Posted in 未分类

发表评论