Python - 删除Aphostrophe并剪切字符串

时间:2016-04-13 08:06:09

标签: python

我想定义一个去除aphostrophe的函数,以及它在aphostrophe之后的字母:

例如:

remove_aph("What's")
>>>What
remove_aph("Kha'Zix")
>>>Kha

2 个答案:

答案 0 :(得分:1)

您可以使用index获取职位:

>>> s= "What's"
>>> s[:s.index("'")] # this is assuming that you always have a single quote
# "What"

或者,您可以在'上拆分并获得第一个值

>>> s.split("'")[0]
# "What"

答案 1 :(得分:1)

def remove_aph(word):
   return word.split("'")[0]