I know that it is possible to write double quotes in Java strings by putting \
symbol before them. But if double quotes are used a lot in a string, is there a way to mark the string once, so there won't be a need to write the \
symbol before each? (just like in C#, it is possible to put the @
symbol before the string)
Example:
String quotes = @"""""""""""""""""""";
instead of
String quotes = "\"\"\"\"\"\"\"\"\"\"\"";