fork download
  1. import re
  2. original_file = r"u00 because i need to replace it to \u00"
  3. print(re.sub(r'\\?u00', r'\\u00', original_file))
Success #stdin #stdout 0.03s 9344KB
stdin
Standard input is empty
stdout
\u00 because i need to replace it to \u00