+ 3
How i can do this in java?
String x="man"; i want (ma"n) <-this output but when I add another comma in it I got error,please help me I am begginer in Java .
6 Respuestas
+ 2
https://code.sololearn.com/chCFALRMAWWU/?ref=app
I think this code will help you!
+ 5
Hi Maninder Singh if this is a Java question would you mind removing the python tag? Please provide us with your entire code by adding it here to make it easier to help Thanks🙂
+ 3
\"
+ 2
TRevor Hodges I want to use this "
+ 2
Just use \ to put special characters in string
String x="ma\"n"
+ 1
if you want to use
ma"n
then you must put single comma ' two times like this
ma''n
hope it works