I am working on android. In my project, I add '|' the character and the @ symbol, but it does not add the @ symbol. not where I made a mistake. Please help me with this.
String str="";
str = str + "|" + id + "@" + id2 + "@" + id3;
When I print the string "str", it only displays the id value, but does not print id1 and id2. Conclusion: | thirteen
source
share