Function voca_rs::manipulate::pad

source ·
pub fn pad(subject: &str, length: usize, pad: &str) -> String
Expand description

Pads subject to a new length.

Arguments

  • subject - The string to pad.
  • length - The length to pad the string. No changes are made if length is less than subject.len().
  • pad - The string to be used for padding.

Example

use voca_rs::*;
manipulate::pad("dog", 5, "");
// => " dog "
manipulate::pad("bird", 6, "-");
// => "-bird-"
manipulate::pad("Café del Mar", 15, "-=");
// => "-Café del Mar-="
use voca_rs::Voca;
"dog"._pad(5, "");
// => " dog "