// 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"(?mx)( # start capture url
(?:(?:(?:ht|f)tps?\:)\/\/?|(?:www\.)) # start with http or www
(?:\s?[:\w?=%&+-]+ # need some chars in url, allow spaces.
(?:(?:(?:\.)|(?:\/(?:\/)?)))? # can have ., / or // inside urls.
)+ # allow repeat alternating pattern of chars and delimiters
) # end capture url").unwrap();
let string = "http://www.apple.com/legal/ privacy/.
abbbbbbbbbbbb
abababab
aaab
hi
h123213i.what
let's do some URLs next segment>
https://duckduckgo.com/?q=perl+regex+%2Fmxsp&t=canonical&atb=v143-1&ia=web, http://www.rexegg.com/regex-modifiers.html
<segment hi there segment> https://duckduckgo.com/?q=tutorial+perl+regex+substitution+capture+groups&t=canonical&atb=v143-1&ia=web-https://regex101.com/, www.giggle.com
B. Privacy Policy. At all times your information will be treated in accordance with Appleās Privacy Policy, which is incorporated by reference into this License and
can be viewed at: http://www.apple.com/legal/ privacy/. qweqweqwewqe
www.howdy.com/welcome::&5";
// 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/