imag/libimagtag/src/util.rs

6 lines
138 B
Rust
Raw Normal View History

2016-02-04 13:01:33 +00:00
use regex::Regex;
pub fn is_tag(s: &String) -> bool {
Regex::new("^[a-zA-Z]([a-zA-Z0-9_-]*)$").unwrap().captures(&s[..]).is_some()
}