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

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

Description

right pad with spaces

License

Open Source License

Parameter

Parameter Description
s a parameter
length a parameter

Declaration

public static String rightPad(String s, int length) 

Method Source Code

//package com.java2s;
/*//from  w  w  w . ja  va  2s.  c o m
GNU General Public License
CacheWolf is a software for PocketPC, Win and Linux that
enables paperless caching.
It supports the sites geocaching.com and opencaching.de
    
Copyright (C) 2006  CacheWolf development team
See http://www.cachewolf.de/ for more information.
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; version 2 of the License.
    
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, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
*/

public class Main {
    /**
     * right pad with spaces
     *
     * @param s
     * @param length
     * @return
     */
    public static String rightPad(String s, int length) {
        String p = "                                                          ";
        return s + p.substring(s.length() + (p.length() - length));
    }
}

Related

  1. rightPad(String inStr, int length, char paddingChar)
  2. rightPad(String original, int length, char padChar)
  3. rightPad(String originalText, int length, char fillChar)
  4. rightPad(String ret, int limit)
  5. rightPad(String s, int length)
  6. rightPad(String s, int length)
  7. rightPad(String s, int minLength)
  8. rightPad(String s, int minLength, char filling)
  9. rightPad(String s, int n)