You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note that escape sequences are only interpreted in [double-quoted scalars](https://yaml.org/spec/1.2.2/#double-quoted-style). In all other [scalar styles](https://yaml.org/spec/1.2.2/#node-styles), the “\” character has no special meaning and non-[printable](https://yaml.org/spec/1.2.2/#character-set) characters are not available.
This is expected. To get this to work you would need to escape those escape characters, \\\\. Re-open this issue if that doesn't solve your problem.
I have the following yaml
Which gets deserialized to an object of matchers : when i invoke matchers[0].regex[0]: it returns a different value , the pattern was unescaped to :
Which has a different meaning.
The text was updated successfully, but these errors were encountered: