Here you can find the source of rightPad(String s, int width)
Parameter | Description |
---|---|
s | The string to pad |
width | The desired width |
public static String rightPad(String s, int width)
//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; } }