#!/usr/bin/python3
import time
import re
print(str(time.time()))
fd = open("B.png.txt","r")
data = fd.read()
fd.close()
print("file read")
print("length of the string is "+str(len(data)))
started = time.time()
print(str(started))
data = re.sub(".*,","",data) #get rid of the extra stuff
print("we did the sub")
print(str(time.time() - started))
