// 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"https:\/\/gyazo.com\/([0-9A-Za-z]{1,32})").unwrap();
let string = "https://gyazo.com/683fd0d45622162038ee0aed541c45e4";
let substitution = "https://i.gyazo.com/$1.png";
// result will be a String with the substituted value
let result = regex.replace(string, substitution);
println!("{}", result);
}
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/