Java Utililty Methods String Repeat

List of utility methods to do String Repeat

Description

The list of methods to do String Repeat are organized into topic(s).

Method

StringrepeatString(String string, int count)
repeatString
return (count > 0) ? join(string, new String[count + 1]) : EMPTY;