Java StringBuilder append() method

append(String str): append the specified string at the end of this string. Syntax: public StringBuilder append(String str)   Note: if the specified string is null then it appends a “null” string at the end. If the append has an object, int, double, etc as an argument then the argument value is first converted into a … Read more