如何从字符串列表中删除单词列表

如何从字符串列表中删除单词列表,第1张

如何从字符串列表中删除单词列表

这是我的目的。这使用正则表达式。

import repattern = re.compile("(of|the|in|for|at)W", re.I)phrases = ['of New York', 'of the New York']map(lambda phrase: pattern.sub("", phrase),  phrases) # ['New York', 'New York']

Sans

lambda

[pattern.sub("", phrase) for phrase in phrases]

更新资料

修复了gnibbler指出的错误(谢谢!):

pattern = re.compile("\b(of|the|in|for|at)\W", re.I)phrases = ['of New York', 'of the New York', 'Spain has rain'][pattern.sub("", phrase) for phrase in phrases] # ['New York', 'New York', 'Spain has rain']

@prabhu:以上更改避免了从“西班牙”中截取尾随“ in ”。为了验证是否对短语“西班牙有雨”运行两个版本的正则表达式。



欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/zaji/5655659.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存