Contact: aviboots(AT)netvision.net.il
42,709 questions
55,473 answers
573 users
val str = "This is a string with \"double-quoted substring1\", and \"double-quoted substring2\" inside."; println(str) /* run: This is a string with "double-quoted substring1", and "double-quoted substring2" inside. */
val str = """This is a string with "double-quoted substring01", and "double-quoted substring02" inside."""; println(str) /* run: This is a string with "double-quoted substring01", and "double-quoted substring02" inside. */