How to append String in Java?

Hi,

I have a number of string in Java which is to be appended efficiently.

How to append String in Java?

Thanks

View Answers

April 16, 2017 at 5:12 PM

Hi,

StringBuilder class is very useful class for this purpose. This class is very efficient and you can use it for appending large number of Spring efficiently and then get final string.

The append() of the class is used:

str.append("India");

You check complete tutorial at Appending String in Java.

Thanks









Related Tutorials/Questions & Answers:
Advertisements