SyntaxFix
Write A Post
Hire A Developer
Questions
There are various ways of converting to Strings:
StringBuilder string = string.append(i).toString(); String string = String.valueOf(i); String string = Integer.toString(i);