Left Pad 524

Question

You know what, left pad is javascript package and referenced by React: Github link

One day his author unpublished it, then a lot of javascript projects in the world broken.

You can see from github it's only 11 lines.

You job is to implement the left pad function. If you do not know what left pad does, see examples below and guess.

Example

leftpad("foo", 5)

" foo"

leftpad("foobar", 6)

"foobar"

leftpad("1", 2, "0")

"01"

Solution

非常简单,直接判断要在原始string之前添加多少个其他字符即可。

代码如下:

public class StringUtils {
    /**
     * @param originalStr the string we want to append to with spaces
     * @param size the target length of the string
     * @return a string
     */
    static public String leftPad(String originalStr, int size) {
        // Write your code here
        if(originalStr.length() >= size){
            return originalStr;
        }else{
            char[] c = new char[size- originalStr.length()];
            Arrays.fill(c, ' ');
            return new String(c) + originalStr;
        }
    }

    /**
     * @param originalStr the string we want to append to
     * @param size the target length of the string
     * @param padChar the character to pad to the left side of the string
     * @return a string
     */
    static public String leftPad(String originalStr, int size, char padChar) {
        // Write your code here
        if(originalStr.length() >= size){
            return originalStr;
        }else{
            char[] c = new char[size- originalStr.length()];
            Arrays.fill(c, padChar);
            return new String(c) + originalStr;
        }
    }
}

results matching ""

    No results matching ""