Function wagon_utils::rem_first_char_n
source · pub fn rem_first_char_n(value: &str, n: usize) -> String
Expand description
Removes the first n characters of a string.
§Example
use wagon_utils::rem_first_char_n;
let s = "123";
assert_eq!("3", rem_first_char_n(s, 2));