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

python 固定长度分割字符串

程序员文章站 2022-04-06 15:33:12
...
def cut_text(text,lenth): 
    textArr = re.findall('.{'+str(lenth)+'}', text) 
    textArr.append(text[(len(textArr)*lenth):]) 
    return textArr 
print(cut_text('123456789abcdefg',3)) 
['123', '456', '789', 'abc', 'def', 'g']