fork(2) download
  1. line = r"example \xb7\xc7\xa0...."
  2. import re
  3. t = re.findall (r'\\x[0-9a-fA-F]+', line)
  4. print t
Success #stdin #stdout 0.02s 6684KB
stdin
Standard input is empty
stdout
['\\xb7', '\\xc7', '\\xa0']