Skip to content

Instantly share code, notes, and snippets.

@yedi
Created January 5, 2012 12:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yedi/1565155 to your computer and use it in GitHub Desktop.
Save yedi/1565155 to your computer and use it in GitHub Desktop.
>>> test
'\n\t\t\tCLG saintvicious\n League of Legends\n
\n 13,364 '
>>> test.split()[0] + ' | ' + test.split()[1]
'CLG | saintvicious'
>>> test.rsplit()[0] + ' | ' + test.rsplit()[1]
'CLG | saintvicious'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment