I need to use a string something like this
String x = "return "My name is X" ";
We can see the issue is first and second quotes wll be treated as a String in itself , but actually first and last quote should form 1 string , while 2nd and 3rd quotes should form another string inside that.
Any solution for this?