9 个版本 (5 个破坏性更新)
0.6.1 | 2021 年 10 月 1 日 |
---|---|
0.6.0 | 2021 年 9 月 30 日 |
0.5.0 | 2021 年 9 月 30 日 |
0.4.0 | 2021 年 9 月 30 日 |
0.1.0 | 2021 年 9 月 25 日 |
174 在 国际化 (i18n) 中排名
每月下载量 34
15KB
357 行
cpp_regexp
cpp std::regex
- test
- replace
- match
- match_all
use cpp_regexp::{RegExp,Config};
assert!(RegExp::new("^hello$",Default::default()).unwrap().test("hello").unwrap());
let match_results = RegExp::new("^(he)(ll)(o)$",Default::default()).unwrap().regex_match("hello").unwrap();
assert!(match_results==["hello","he","ll","o"]);
let hello2 = "hello".repeat(2);
let match_all_results = RegExp::new("(he)(ll)(o)",Default::default()).unwrap().match_all(&hello2).unwrap();
assert!(match_all_results[0]==["hello","he","ll","o"]);
assert!(match_all_results.len()==2);
assert!(match_all_results.iter().collect::<Vec<_>>()==[["hello","he","ll","o"],["hello","he","ll","o"]]);
let config = Config{
icase:true,
//UTF-8 only
locale:"es_US.UTF-8",
..Default::default()
};
let mut regex = RegExp::new("hello♥",config).unwrap();
assert!(regex.test("hellO♥").unwrap());
assert!(RegExp::new("^(((hello$",config).is_err());
assert!(regex.replace("hello♥ world","good").unwrap()=="good world");
let config_es = Config{
icase:true,
locale:"es_ES.UTF-8",
..Default::default()
};
let mut regex = RegExp::new("ñ",config_es).unwrap();
//not single character
assert!(regex.test("Ñ").unwrap()==false);
许可证:MIT OR Apache-2.0
依赖
~0.5–2MB
~30K SLoC