Depending on what you are doing, you can convert this data into valid HTML symbolic links so that you can parse it in context with the correct HTML parser.
However, it is easy enough to extract strings of numbers and convert them to equivalent ASCII characters. For instance,
s ='Blasterjaxx '
print ''.join([chr(int(u)) for u in s.split('&#') if u])
Output
Blasterjaxx
if uskips the initial empty line that we get, because it sstarts with a split line ''. In addition, we could skip it by slicing:
''.join([chr(int(u)) for u in s.split('&#')[1:]])
source
share