Marcel van Lohuizen | 0117d90 | 2019-02-21 23:55:39 +0100 | [diff] [blame^] | 1 | [TOC](Readme.md) [Prev](stringlit.md) [Next](bytes.md) |
| 2 | |
| 3 | _JSON Sugar and other Goodness_ |
| 4 | |
| 5 | # "Raw" Strings |
| 6 | |
| 7 | CUE does not support raw strings in the strictest sense. |
| 8 | Instead it allows modifying the escape delimiter by requiring |
| 9 | an arbitrary number of hash `#` signs after the backslash by |
| 10 | enclosing a string literal in an equal number of hash signs on either end. |
| 11 | |
| 12 | This works for normal and interpolated strings. |
| 13 | Quotes do not have to be escaped in such strings. |
| 14 | |
| 15 | <!-- CUE editor --> |
| 16 | ``` |
| 17 | msg1: #"The sequence "\U0001F604" renders as \#U0001F604."# |
| 18 | |
| 19 | msg2: ##""" |
| 20 | A regular expression can conveniently be written as: |
| 21 | |
| 22 | #"\d{3}"# |
| 23 | |
| 24 | This construct works for bytes, strings and their multi-line variants. |
| 25 | """## |
| 26 | ``` |
| 27 | |
| 28 | <!-- JSON result --> |
| 29 | ```json |
| 30 | { |
| 31 | msg1: "The sequence \"\\U0001F604\" renders as 😄." |
| 32 | msg2: """ |
| 33 | A regular expression can conveniently be written as: |
| 34 | |
| 35 | #\"\\d{3}\"# |
| 36 | |
| 37 | This construct works for bytes, strings and their multi-line variants. |
| 38 | """ |
| 39 | } |
| 40 | ``` |