Closed pepsighan closed 6 years ago
Hello. You want alphabet is a regular expression? Why is it necessary? How to use it?
You can create the alphabet with something like this if that's what you're looking for.
(b'a'..=b'z').chain(b'0'..=b'9').map(|c| c as char).collect()
Is it possible to use characters from a Regex? Typing each and every custom character takes a while.