mirror of
https://gitee.com/openharmony/third_party_rust_regex
synced 2025-04-05 19:51:43 +00:00

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.
18 lines
462 B
Rust
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());
|
|
}
|