Uninterpreted strings in YAML

Viewed 11781

Is there a way to have uninterpreted strings within a YAML file? My goal is to have regular expressions that contain certain escape sequences like \w. Currently, Python's YAML complains: found unknown escape character 'w'.

I know I could escape them, but this is going to obfuscate the actual regular expression. Any way around this?

2 Answers
Related