代码之家  ›  专栏  ›  技术社区  ›  Sociopath

如何从字符串中删除列表的所有元素?[副本]

  •  0
  • Sociopath  · 技术社区  · 6 年前

    我有一个字符串列表

    l1 = ['John', 'London', '219980']
    

    我想从给定字符串中删除此列表的元素,例如:

    s1 = "This is John Clay. He is from London with 219980"
    

    我知道我可以像

    for l in l1:
        s1 = s1.replace(l, "")
    

    但如果清单很大,就要花太多时间。
    还有其他的解决办法吗?

    期望输出:

    'This is  Clay. He is from  with '
    

    编辑 :

    这个列表是以这样一种方式制作的:列表中的所有元素都以字符串(句子)的形式出现。

    2 回复  |  直到 6 年前
        1
  •  1
  •   apple apple    6 年前

    您只需使用regex或( | )

    import re
    l1 = ['John', 'London', '219980']
    s1 = "This is John Clay. He is from London with 219980"
    re.sub('|'.join(l1),'',s1)
    

    如果你的母语包含 | 你可以用 r'\|' 第一

        2
  •  1
  •   user2390182    6 年前

    使用正则表达式,特别是 re.sub ,您可以尝试:

    import re
    
    l1 = ['John', 'London', '219980']
    s1 = "This is John Clay. He is from London with 219980"
    p = '|'.join(l1)  # pattern to replace
    re.sub(p, '', s1)
    # 'This is  Clay. He is from  with '