All pastes #2109970 Raw Edit

Untitled

public text v1 · immutable
#2109970 ·published 2012-02-05 18:10 UTC
rendered paste body
#!/usr/bin/python
#

import re

buf = open("foo").readlines()
for l in buf:
    (a,b) = l.split(":")
    (b,c) = b.split(";")
    print "%s:%s;%s" % (re.sub("\s", "", a),b,re.sub("\s","",c))