pub fn regex_matches(value: &str, pattern: &str) -> boolExpand description
Tests whether value matches the regular expression (the MATCHES operator).
The match is unanchored, mirroring the reference implementation. An invalid regex never matches (returns false rather than erroring).