Java String Left Justify leftJustify(String string, int width)

Here you can find the source of leftJustify(String string, int width)

Description

left Justify

License

Open Source License

Declaration

public static String leftJustify(String string, int width) 

Method Source Code

//package com.java2s;
/*//w  w w .  j av  a2  s.  c om
 * Copyright (c) 2016 Catavolt Inc. All rights reserved.
 *
 * This file is part of Ozy.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

public class Main {
    public static String leftJustify(String string, int width) {
        StringBuilder buffer = new StringBuilder();
        buffer.append(string);
        int deficit = width - string.length();
        for (int i = 0; i < deficit; i++) {
            buffer.append(' ');
        }
        return buffer.toString();
    }
}

Related

  1. LeftAdjust(String s, int len, char pad)
  2. leftJustify(long v, int width)
  3. leftJustify(String s, int maxLength)
  4. leftJustify(String sourceString, int targetLen, char pad)
  5. leftJustify(String str, int width)
  6. leftJustify(String value, int width)
  7. leftJustifyString(String s, int width)
  8. leftJustifyText(String originalValue, int length, char padCharacter)