use std::sync::Arc;
pub struct StringUtils;
impl StringUtils {
pub fn is_empty(s: &str) -> bool {
s.is_empty()
}
pub fn eq(a: &str, b: &str) -> bool {
a == b
}
pub fn like(a: &str, b: &str) -> Option<usize> {
a.rfind(b)
}
pub fn is_option_empty_arc(v: &Option<Arc<String>>) -> bool {
if let Some(v) = &v {
v.is_empty()
} else {
true
}
}
pub fn is_option_empty(v: &Option<String>) -> bool {
if let Some(v) = &v {
v.is_empty()
} else {
true
}
}
pub fn map_not_empty(v: Option<String>) -> Option<String> {
if let Some(v) = &v {
if v.is_empty() {
return None;
}
}
v
}
}