/**
 * Pad the right side of a string with another.
 *
 * @param  int    $length If the value of pad_length is negative, less than, or equal to the length of the input string, no padding takes place, and input will be returned.
 * @param  string $pad    The pad string may be truncated if the required number of padding characters can't be evenly divided by the pad_string's length.
 *
 * @return self Returns instance of The Strings class.
 */
public function padRight(int $length, string $pad = ' '): self

Examples

$string = Strings::create('SG-1 returns from an off-world mission')->padRight(50, '-');

echo $string;

The above example will output:

SG-1 returns from an off-world mission------------

Getting Started

Methods