美文网首页
指定多个分割符同时分割字符串

指定多个分割符同时分割字符串

作者: xl_5574 | 来源:发表于2018-11-01 14:08 被阅读0次

a="qwhbertyuu"  #要截取的字符串

tep=["w","r","y"] #指定分隔符

n=len(tep)

list=[]

def func(n,x):

    if n >1 or n==1:

    n=n-1

    re=x.split(tep[2-n])

    re3=x.split(tep[2-n])[-1]

    if n==0:

      list.append(re[0])

      list.append(re[-1])

    else:

        list.append(re[0])

    func(n,re3)

    else:

        pass

func(n,a)

print(list)

相关文章

网友评论

      本文标题:指定多个分割符同时分割字符串

      本文链接:https://www.haomeiwen.com/subject/qvcxxqtx.html