python 使用拆分器拆分列表中的所有字符串并将其添加回来(在某些搜索算法中非常有用)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 使用拆分器拆分列表中的所有字符串并将其添加回来(在某些搜索算法中非常有用)相关的知识,希望对你有一定的参考价值。

def split_all_strings(input_array, splitter):
    # splits all strings in a list with the splitter and adds them back
    # by: Cody Kochmann
    if isinstance(input_array, basestring):
        # patch to accept input_array in string form
        input_array = [input_array]
    result = []
    for i in input_array:
        for x in i.split(split_char):
            result.append(x)
    return(result)

以上是关于python 使用拆分器拆分列表中的所有字符串并将其添加回来(在某些搜索算法中非常有用)的主要内容,如果未能解决你的问题,请参考以下文章

拆分所有列表框元素并将它们全部添加到新的字符串数组中

将字符串拆分为列表并将项目转换为 int

python映射字符串拆分列表

如何将字符串拆分为列表?

使用拆分字符串自定义共享按钮中的意图或如何拆分字符串并替换奇数逗号

加入列表和拆分字符串 [重复]