third_party_rust_regex/examples/shootout-regex-dna-replace.rs
Andrew Gallant e2860fe037 edition: manual fixups to code
This commit does a number of manual fixups to the code after the
previous two commits were done via 'cargo fix' automatically.

Actually, this contains more 'cargo fix' annotations, since I had
forgotten to add 'edition = "2018"' to all sub-crates.
2021-04-30 20:02:56 -04:00

18 lines
462 B
Rust

use std::io::{self, Read};
macro_rules! regex {
($re:expr) => {{
use regex::internal::ExecBuilder;
ExecBuilder::new($re).build().unwrap().into_regex()
}};
}
fn main() {
let mut seq = String::with_capacity(50 * (1 << 20));
io::stdin().read_to_string(&mut seq).unwrap();
let ilen = seq.len();
seq = regex!(">[^\n]*\n|\n").replace_all(&seq, "").into_owned();
println!("original: {}, replaced: {}", ilen, seq.len());
}