足球结果的Python字符串提取

时间:2016-10-16 16:03:15

标签: python string

我有以下字符串:

"W-Leicester-3-0-H|W-Hull-2-0-A|L-Arsenal-0-3-A|L-Liverpool-1-2-H|D-Swansea-2-2-A"

我想要做的是操纵上面的字符串,这样它就会返回每个游戏的结果,这是每个游戏后面的第一个字母" |"。在这种情况下,它将是WWLLD。

非常感谢,艾伦。

1 个答案:

答案 0 :(得分:1)

尝试这样的事情:

 string = "W-Leicester-3-0-H|W-Hull-2-0-A|L-Arsenal-0-3-A|L-Liverpool-1-2-H|D-Swansea-2-2-A"
 result = ''.join([s[0] for s in string.replace('||', '|').split('|')])