Skip to content

Instantly share code, notes, and snippets.

@rust-play
Created April 21, 2021 10:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rust-play/e353a863a6ab788e03dc67aeac69e253 to your computer and use it in GitHub Desktop.
Save rust-play/e353a863a6ab788e03dc67aeac69e253 to your computer and use it in GitHub Desktop.
Code shared from the Rust Playground
fn main() {
let regex = regex::Regex::new(r"(?P<a_only>a$)|(?:a:)(?P<a_colon>[^/].+)|(?P<a_slash>a/\d{1,2})").unwrap();
[
"a",
"a:example.com",
"a:mailers.example.com",
"a/24",
"a:offsite.example.com/24]",
]
.iter()
.copied()
.map(|string| regex.captures(string))
.for_each(|cap| println!("{:?}", cap))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment