pub fn non_whitespace() -> HumanRegex
Expand description

A function for the whitespace character class (i.e., everything BUT space and tab)

use human_regex::{beginning, end, one_or_more, non_whitespace};
let regex_string = beginning() + one_or_more(non_whitespace()) + end();
assert!(regex_string.to_regex().is_match("supercalifragilisticexpialidocious"));
assert!(regex_string.to_regex().is_match("a-sluggified-thingamajig"));
assert!(!regex_string.to_regex().is_match("something with spaces won't pass"));