You can easily "chop" a string , just like you pull items from a list :
a_string = 'This is a string'
To get the first 4 letters:
first_four_letters = a_string[:4] >>> 'This'
Or the last 5:
last_five_letters = a_string[-5:] >>> 'string'
So, applying this logic to your problem:
the_string = '416d76b8811b0ddae2fdad8f4721ddbe|d4f656ee006e248f2f3a8a93a8aec5868788b927|12a5f648928f8e0b5376d2cc07de8e4cbf9f7ccbadb97d898373f85f0a75c47f ' first_32_chars = the_string[:32] >>> 416d76b8811b0ddae2fdad8f4721ddbe
TankorSmash Jul 30 '12 at 3:01 2012-07-30 03:01
source share