简体   繁体   English

如何将一个很长的字符串拆分为 python 中较短的字符串列表

[英]How do i split a very long string into a list of shorter strings in python

In my current django project I have a model that stores very long strings (can be 5000-10000 or even more characters per DB entry) and then i need to split them when a user is calling the record (it really need to be in one record in the DB).在我当前的 django 项目中,我有一个 model 存储非常长的字符串(每个数据库条目可以是 5000-10000 甚至更多字符),然后我需要在用户调用记录时将它们拆分(它确实需要在一个记录在数据库中)。 What i need is it to return a list (queryset? depends if in the "SQL" part or getting all the list as is and doing the parsing in the view) of shorter strings (100 - 500 characters per sting in the list i return to the template).我需要的是返回一个较短字符串的列表(查询集?取决于是在“SQL”部分还是按原样获取所有列表并在视图中进行解析)较短的字符串(我返回的列表中每个字符串 100-500 个字符)到模板)。

I couldn't find anywhere a python split command nor example or any kind of answer for that....我在任何地方都找不到 python 拆分命令,也找不到示例或任何类型的答案....

I could always count words and append but count words.... but i am sure there has to be some kind of function for that sort of things....我总是可以数字数和 append 但数字数....但我确信必须有某种 function 用于这类事情....

EDIT: thank you everyone, but i guess i wasn't understood,编辑:谢谢大家,但我想我没有被理解,

Example:例子:

The String: "This is a very long string with many many many many and many more sentences and there is not one character that i can use to split by, just by number of words"字符串:“这是一个很长的字符串,有很多很多很多很多的句子,没有一个字符可以用来分割,只是按单词的数量”

the string is a textField of django model.该字符串是 django model 的文本字段。

i need to split it, lets say every 5 words so i will get:我需要拆分它,让我们每5 个单词说一次,这样我会得到:

['This is a very long string','with many many many many','and many more sentences and','there is not one character','that i can use to','split by, just by number',' of words'] ['这是一个很长的字符串','有很多很多','还有很多句子','没有一个字符','我可以用','分割,只是按数字' ,'单词']

The thing is that is almost every programming languages there is split per number of words" kind of utility function but i can't find one in python.问题是几乎每一种编程语言都按字数分割”一种实用程序 function但我在 python 中找不到。

thanks, Erez谢谢, 埃雷兹

>>> s = "This is a very long string with many many many many and many more sentences and there is not one character that i can use to split by, just by number of words"
>>> l = s.split()
>>> n = 5
>>> [' '.join(l[x:x+n]) for x in xrange(0, len(l), n)]
['This is a very long',
 'string with many many many',
 'many and many more sentences',
 'and there is not one',
 'character that i can use',
 'to split by, just by',
 'number of words']

Here is an idea:这是一个想法:

def split_chunks(s, chunksize):
    pos = 0
    while(pos != -1):
        new_pos = s.rfind(" ", pos, pos+chunksize)
        if(new_pos == pos):
            new_pos += chunksize # force split in word
        yield s[pos:new_pos]
        pos = new_pos

This tries to split strings into chunks at most chunksize in length.这会尝试将字符串拆分为最大长度为chunksize的块。 It tries to split at spaces, but if it can't it splits in the middle of a word:它尝试在空格处拆分,但如果不能,它会在单词中间拆分:

>>> foo = "asdf qwerty sderf sdefw regf"
>>> list(split_chunks(foo, 6)
['asdf', ' qwert', 'y', ' sderf', ' sdefw', ' regf', '']

I guess it requires some tweaking though (for instance how to handle splits that occur inside words), but it should give you a starting point.我想它需要一些调整(例如如何处理单词内部发生的拆分),但它应该给你一个起点。


To split by number of words, do this:要按字数拆分,请执行以下操作:

def split_n_chunks(s, words_per_chunk):
    s_list = s.split()
    pos = 0
    while pos < len(s_list):
        yield s_list[pos:pos+words_per_chunk]
        pos += words_per_chunk

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何将以下 Python 字符串拆分为字符串列表? - How do I split up the following Python string in to a list of strings? 如何在 Python 中缩短一长串异常? - How to make a long list of exceptions shorter in Python? 如何在 Python 中使用递归拆分字符串? - How do i split strings with recursion in Python? 如何在python中拆分非常长的正则表达式 - how to split very long regular expression in python 如何在Python中使用非常长的字符串? - How to work with very long strings in Python? python如何在很长的字符串中检测一个短语? - python how to detect a phrase in a very long strings? 如何在 python 中将 HTML 字符串拆分为较短的 HTML 字符串? (添加了一些有趣的东西) - How to i split an HTML string into shorter HTML string in python? (added some intersing stuff) 给定两个字符串,如何将较短的字符串分配给一个变量,将较长的字符串分配给另一个变量 - Given two strings, how do I assign the shorter string to one variable and the longer string to another 如何在Python中拆分字符串列表 - How to split a list of strings in Python 如何在Python中使用分隔符将长字符串分成3个不同的字符串 - How do I separate a long string into 3 different strings using a separator in Python
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM