rustHow to use regex with bytes in Rust?
Regex can be used with bytes in Rust by using the regex crate. This crate provides a Regex type which can be used to match against byte slices.
use regex::Regex;
let re = Regex::new(r"\d+").unwrap();
let bytes = b"123 456";
for cap in re.captures_iter(bytes) {
println!("{}", &cap[0]);
}
Output example
123
456
Code explanation
use regex::Regex: imports theRegextype from theregexcrate.Regex::new(r"\d+"): creates a newRegexobject from the given pattern.captures_iter(bytes): returns an iterator over all the non-overlapping captures in the given byte slice.&cap[0]: returns the first capture group of the given capture.
Helpful links
Related
- How to match whitespace with a regex in Rust?
- How to use Unicode in a regex in Rust?
- How to replace strings using Rust regex?
- How to use non-capturing groups in Rust regex?
- Regex example to match multiline string in Rust?
- How to match a URL with a regex in Rust?
- How to ignore case in Rust regex?
- How to get a capture group using Rust regex?
- How to make regex case insensitive in Rust?
- How to get all matches from a Rust regex?
More of Rust
- How to use regex lookbehind in Rust?
- How to match whitespace with a regex in Rust?
- How to replace strings using Rust regex?
- How to use regex lookahead in Rust?
- How to convert struct to bytes in Rust
- Regex example to match multiline string in Rust?
- How to match a URL with a regex in Rust?
- How to replace all matches using Rust regex?
- How to use non-capturing groups in Rust regex?
- How to find the first match in a Rust regex?
See more codes...