Contact: aviboots(AT)netvision.net.il
37,083 questions
48,461 answers
573 users
fn main() { let string = "This is a string with \"double-quoted substring1\", and \"double-quoted substring2\" inside."; println!("{}", string); } /* run: This is a string with "double-quoted substring1", and "double-quoted substring2" inside. */
fn main() { let string = r#"This is a string with "double-quoted substring01", and "double-quoted substring02" inside."#; println!("{}", string); } /* run: This is a string with "double-quoted substring01", and "double-quoted substring02" inside. */