[][src]Function voca_rs::manipulate::trim

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

Removes whitespaces from left and right sides 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(" Mother nature ", "");
// => "Mother nature"
manipulate::trim("-~-Earth~-~", "-~");
// => "Earth"
use voca_rs::Voca;
" Mother nature "._trim("");
// => "Mother nature"