@stdlib/string-right-pad v0.2.2
Right Pad
Right pad a string.
Installation
npm install @stdlib/string-right-padUsage
var rpad = require( '@stdlib/string-right-pad' );rpad( str, len[, pad] )
Right pads a string such that the padded string has a length of at least len.
var str = rpad( 'a', 5 );
// returns 'a 'By default, an input string is padded with spaces. To pad with a different character or sequence of characters, provide a pad string.
var str = rpad( 'beep', 10, 'p' );
// returns 'beeppppppp'
str = rpad( 'beep', 12, 'boop' );
// returns 'beepboopboop'Notes
An output
stringis not guaranteed to have a length of exactlylen, but to have alengthof at leastlen. To generate a paddedstringhaving alengthequal tolenvar str = rpad( 'beep', 10, 'boop' ); // returns 'beepboopboop' => length 12 str = str.substring( 0, 10 ); // returns 'beepboopbo' => length 10
Examples
var round = require( '@stdlib/math-base-special-round' );
var randu = require( '@stdlib/random-base-randu' );
var rpad = require( '@stdlib/string-right-pad' );
var str = 'beep';
var n;
var i;
for ( i = 0; i < 100; i++ ) {
n = round( randu()*10.0 ) + str.length;
console.log( rpad( str, n, 'p' ) );
}See Also
@stdlib/string-right-pad-cli: CLI package for use as a command-line utility.@stdlib/string-left-pad: left pad a string.@stdlib/string-pad: pad a string.
Notice
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
Community
License
See LICENSE.
Copyright
Copyright © 2016-2024. The Stdlib Authors.