欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

按固定长度拆分字符串-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']