+ 1
Create a string containing double quotes
""
3 odpowiedzi
+ 1
System.out.print("text with \"quotes\"..."); // java
0
In most languages, use the backslash. It's called escaping the quote:
string a = "a \"quote\" here";
Or just start with single quotes for languages like JavaScript:
let a = 'a "quote" here';
0
Answer plz