删除字符串第一个单词的最快/最干净的方法是什么?我知道我可以使用split
然后迭代数组来获取我的字符串。但我很确定这不是最好的方法。
Ps:我对python很新,我不知道每个技巧。
提前感谢您的帮助。
答案 0 :(得分:63)
我认为最好的方法是拆分,但通过提供maxsplit
参数将其限制为仅一次拆分:
>>> s = 'word1 word2 word3'
>>> s.split(' ', 1)
['word1', 'word2 word3']
>>> s.split(' ', 1)[1]
'word2 word3'
答案 1 :(得分:16)
一个天真的解决方案是:
text = "funny cheese shop"
print text.partition(' ')[2] # cheese shop
然而,这不适用于以下(公认的人为)例子:
text = "Hi,nice people"
print text.partition(' ')[2] # people
要处理这个问题,你需要正则表达式:
import re
print re.sub(r'^\W*\w+\W*', '', text)
更一般地说,如果不知道我们正在谈论的是哪种自然语言,就不可能回答涉及“单词”的问题。 “J'ai”有多少字? “中华人民共和国”怎么样?
答案 2 :(得分:3)
如果你的字符串只有一个单词,那么另一个答案会引发异常,我认为这不是你想要的。
另一种方法是使用str.partition
函数。
>>> s = "foo bar baz"
>>> first, _, rest = s.partition(" ")
>>> rest or first
'bar baz'
>>> s = "foo"
>>> first, _, rest = s.partition(" ")
>>> rest or first
'foo'
答案 3 :(得分:1)
假设您可以保证单词由单个空格分隔,str.partition()
就是您要找的。 p>
>>> test = "word1 word2 word3"
>>> test.partition(" ")
('word1', ' ', 'word2 word3')
元组中的第三项是你想要的部分。