At the moment, I have two string
String str1="In the morning
I have breakfast
After";
String str2="In the afternoon
I have dinner
Before";
I want to merge two string to create a string as follow:
String strMerge="In the morning
In the afternoon
I have breakfast
I have dinner
After
Before"
How must I do?
strMerge= str1+str2?? Please be clear on what basis you need to merge.