15 Aug
2019
15 Aug
'19
11:17 a.m.
On 8/15/19 10:40 AM, Greg Ewing wrote:
If we want a truly raw string format that allows all characters, including any kind of quote, we could take a tip from Fortran:
s = 31HThis is a "totally raw" string!
Or from Rust: let s = r"Here's a raw string"; let s = r#"Here's a raw string with "quotes" in it"#; let s = r##"Here's r#"the raw string syntax"# in raw string"##; let s = r###"and here's a '##"' as well"###;