pub fn strip_left(string: &str, char: char) -> &str
Expand description

Removes the given character at the beginning of the string.

Examples

use kalgan_string;

assert_eq!(kalgan_string::strip_left("Hello World", 'H'), "ello World");