// include the latest version of the regex crate in your Cargo.toml
extern crate regex;
use regex::Regex;
fn main() {
let regex = Regex::new(r#"(?m)\d{8}(?=" batch from)"#).unwrap();
let string = "|09082022|LBYWNU|0|GSS TL-Aug-22|07/25/2022|PSPSPS|330021|318062|19|Reverses \"GS_TAE_ACC GBP MOR 31-AUG-22\" journal entry of \"GL_TAE_CCL_08102022071920.txt GS_TAE A 2022081017060 57204987\" batch from \"AUG-22\".|GS_TAE|20220908221130_CCL2GGL_";
// result will be an iterator over tuples containing the start and end indices for each match in the string
let result = regex.captures_iter(string);
for mat in result {
println!("{:?}", mat);
}
}
Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for Rust, please visit: https://docs.rs/regex/latest/regex/