I am working with strings in python. I have a string like this one:
'http://pbs.twimg.com/media/xxiajdiojadf.jpg||2013-11-17,16:19:52||more text in this string'
To get the first and the second part of the string is easy, but what I need to do for the second part?, I mean I want to get the text after the second || . For the first ones:
url=s.split("||")[0] and date=s.split("||")[1]
I have try with url=s.split("||")[2]
but I have nothing
Thanks in advance