码迷,mamicode.com
首页 > 编程语言 > 详细

实现python 的split函数

时间:2015-01-08 11:30:22      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:python split

str = ‘ AAA|+aaa  |BBB|+ccc DDD|ddd+EEE ‘
print str,‘len = ‘,len(str)
print ‘\n‘
x =  raw_input(‘plz input the separator:‘)

a=b=n=0 
  
while a <= len(str):
    while  str[a] == x :
        a= a + 1
        n = a
        if a  == len(str):
            break
    if a  == len(str):
        break 
    while  str[a] != x :
        a = a + 1
        m = a
        if a  == len(str):
            break
    print ‘n=‘,n,‘m=‘,m,str[n:m]
    if a  == len(str):
        break


先写在这里,每个while 都用了break才能退出,不然运行会因为超过index数报错。


实现python 的split函数

标签:python split

原文地址:http://374721.blog.51cto.com/364721/1600542

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!