1 2 3 4 5 6 7 8 9 10 11 12 13
use crate::symbol::SYMBOL;
pub struct StringExt;
impl StringExt {
pub fn truncate_new_line_carriage_return(str: &str) -> String {
str.replace("\r", "").replace("\n", "")
}
pub fn filter_ascii_control_characters(str: &str) -> String {
str.replace(|x : char | x.is_ascii_control(), SYMBOL.empty_string).trim().to_string()
}
}