941 938 RegexImpl::Fancy { prog, .. } => prog.debug_print(writer), 942 939 } 943 940 } src/vm.rs +1-3 Original file line numberDiff line numberDiff line change @@ -89,7 +89,6 @@ use crate::Formatter; 89 89 use crate::Result; ...
fancy-regex fancy-regex/fancy-regexPublic Sponsor NotificationsYou must be signed in to change notification settings Fork37 Star462 main BranchesTags Code Folders and files Name Last commit message Last commit date Latest commit keith-hall Merge pull request#152from forkeith/fix_toy_example...
[0.14.0]: https://github.com/fancy-regex/fancy-regex/compare/0.13.0...0.14.0 [0.13.0]: https://github.com/fancy-regex/fancy-regex/compare/0.12.0...0.13.0 [0.12.0]: https://github.com/fancy-regex/fancy-regex/compare/0.11.0...0.12.0 [0.11.0]: https://github.com/fancy-regex...
Rust library for regular expressions using "fancy" features like look-around and backreferences - eliminate DelegateSized and use search_half · fancy-regex/fancy-regex@60a96cc
I would like to switch from rust-onig to fancy-regex. This would probably come with a speedup and remove the last non-Rust dependency. This is nice in general and would enable compiling to WebAssembly. Changing this in NLPRule would be e...
Rust library for regular expressions using "fancy" features like look-around and backreferences - Merge pull request #148 from forkeith/implement_slash_capital_z_147 · fancy-regex/fancy-regex@94852a6
let re = common::regex(r"(\w)[\ba]"); let mut c = re.captures_iter("awd dar"); assert_eq!(c.next().unwrap().unwrap().get(1).unwrap().range(), 2..3); assert_eq!(c.next().unwrap().unwrap().get(1).unwrap().range(), 4..5); ...
kubetail-org / fancy-ansi Public Notifications Fork 3 Star 86 Code Issues 1 Pull requests Actions Projects Security Insights New issue Copies ansi-regex into source code #17 Merged amorey merged 3 commits into kubetail-org:main from amorey:jspm-bugfix May 10, 2024 ...
@@ -24,7 +24,9 @@ use fancy_regex::internal::{analyze, compile, run_trace, Insn, Prog}; 24 24 use fancy_regex::*; 25 25 use std::env; 26 26 use std::io; 27 + use std::io::Write; 27 28 use std::str::FromStr; 29 + use std::fmt::{Display, Formatter, Resu...
fancy-regex/fancy-regexPublic Sponsor NotificationsYou must be signed in to change notification settings Fork37 Star440 main BranchesTags Code Folders and files Name Last commit message Last commit date Latest commit History 460 Commits .github ...