regex rule look-ahead and look-behind not supported?
example:
i have a text, and want to match zhe json str
jsonpgz({"fundcode":"000924"});
re:
(?<=jsonpgz\()(.+)(?=\);)
rust code:
let re = Regex::new("(?<=jsonpgz\\()(.+)(?=\\);)").unwrap();
let fund_json_str = re.captures("jsonpgz({"fundcode":"000924"});").unwrap();
run error:
look-around, including look-ahead and look-behind, is not supported
