[][src]Function voca_rs::manipulate::trim_left

pub fn trim_left(subject: &str, whitespace: &str) -> String

Removes whitespaces from the left side of the subject.

Arguments

  • subject - The string to trim.
  • whitespace - The whitespace characters to trim. List all characters that you want to be stripped.

Example

use voca_rs::*;
manipulate::trim_left(" Mother nature ", "");
// => "Mother nature "
manipulate::trim_left("-~-Earth~-~", "-~");
// => "Earth~-~"
use voca_rs::Voca;
" Mother nature "._trim_left("");
// => "Mother nature "