> hello friends ,
>
> please tell me how can i write a string in multiple
> e lines(i.e i want multiple line string)
Hi,
I'm not sure that I understand what you mean. Do you just want to include a line break in the string? You should in that case use the escape character \n.
E.g.
String text = "two\nlines";
Kaj