blob: 6f5b73ae4fea3b0de812821058e09670c4c665bf [file] [log] [blame] [view]
Marcel van Lohuizen0117d902019-02-21 23:55:39 +01001[TOC](Readme.md) [Prev](stringlit.md) [Next](bytes.md)
2
3_JSON Sugar and other Goodness_
4
5# "Raw" Strings
6
7CUE does not support raw strings in the strictest sense.
8Instead it allows modifying the escape delimiter by requiring
9an arbitrary number of hash `#` signs after the backslash by
10enclosing a string literal in an equal number of hash signs on either end.
11
12This works for normal and interpolated strings.
13Quotes do not have to be escaped in such strings.
14
15<!-- CUE editor -->
16```
17msg1: #"The sequence "\U0001F604" renders as \#U0001F604."#
18
19msg2: ##"""
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```