僅刪除第一個字的輸入字符串如下:的Python:如何從一個字符串
line = "Cat Jumped the Bridge"
輸出應該是「跳橋」。
我試圖
s2 = re.match('\W+.*', line).group()
但它返回
Traceback (most recent call last):
File "regex.py", line 7, in <module>
s2 = re.match('\W+.*', line).group()
AttributeError: 'NoneType' object has no attribute 'group'
因此很明顯,這場比賽失敗。
感謝您的任何建議。 喬
而不是re.match re.search做我需要的。那就是去掉一行的第一個單詞。如果你很好奇,爲什麼我需要做這樣的事情。這是在使用cmd模塊並嘗試從一行命令中收集參數的上下文中。感謝所有回答的人。 –