按固定长度拆分字符串-python
程序员文章站
2022-04-06 15:29:31
...
按固定长度拆分字符串-python
import re
def splitstr(s, len=1):
return re.findall(r'(.{%s}|.*)' % len, s)[:-1]
print splitstr('abcde') # ['a', 'b', 'c', 'd', 'e']
print splitstr('abcde', 2) # ['ab', 'cd', 'e']
print splitstr('abcde', 3) # ['abc', 'de']
上一篇: Python_练习