Skip to content

Instantly share code, notes, and snippets.

View shaunlgs's full-sized avatar
🌴
On vacation

Shaun Ling shaunlgs

🌴
On vacation
View GitHub Profile
@umidjons
umidjons / java-repeat-string.md
Created April 16, 2014 11:49
Repeat string N times without loop in Java

Repeat string N times without loop in Java

package javaapplication1;
public class JavaApplication1 {
    /**
     * Repeat string <b>str</b> <b>times</b> time.
     * @param str string to repeat
     * @param times repeat str times time
     * @return generated string
 */