Skip to content

Rose::StringUtility::rightJustify

Right justify a string to specified width.

Synopsis

Declared in <src/Rose/StringUtility/Convert.h>

[[visibility]]
std::string
rightJustify(
    std::string const& input,
    size_t width,
    char fill = ' ');

Description

The given string is either truncated or extended to make it the specified number of characters. New fill characters are added to the beginning of the string if necessary.

Return Value

Right‐justified string.

Parameters

Name

Description

input

Input string.

width

Target width.

fill

Fill character.

Created with MrDocs