Java String Pad Right rightPad(String s, int width)

Here you can find the source of rightPad(String s, int width)

Description

pad on right side of string to width.

License

Open Source License

Parameter

Parameter Description
s The string to pad
width The desired width

Return

The padded string to width

Declaration

public static String rightPad(String s, int width) 

Method Source Code

//package com.java2s;
/*/*  w  w  w. j  a v  a  2s .c o  m*/
 * Copyright 2011, United States Geological Survey or
 * third-party contributors as indicated by the @author tags.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/  >.
 *
 */

public class Main {
    /** pad on right side of string to width.  Used to create "fixed field" 
     *lines 
       *@param s The string to pad
    *@param width The desired width
    *@return The padded string to width
    */
    public static String rightPad(String s, int width) {
        String tmp = "";
        int npad = width - s.length();
        if (npad < 0)
            tmp = s.substring(0, width);
        else if (npad == 0)
            tmp = s;
        else {
            tmp = s;
            for (int i = 0; i < npad; i++)
                tmp += " ";
        }
        return tmp;
    }
}

Related

  1. rightPad(String s, int length)
  2. rightPad(String s, int length)
  3. rightPad(String s, int minLength)
  4. rightPad(String s, int minLength, char filling)
  5. rightPad(String s, int n)
  6. rightPad(String s, int z)
  7. rightPad(String srcStr, char padChar, int destLen)
  8. rightPad(String srcString, char c, int length)
  9. rightPad(String str, int len, char c)