Explore >> Select a destination


You are here

mkaz.blog
| | github.com
1.1 parsecs away

Travel
| | Learn regex the easy way. Contribute to ziishaned/learn-regex development by creating an account on GitHub.
| | www.giorgiosironi.com
3.8 parsecs away

Travel
| | Regular expressions are an old but powerful tool for pattern matching, as they date back to the 1960s and have survived till today. They can...
| | www.mdk-photo.com
1.2 parsecs away

Travel
| | [AI summary] The text provides a comprehensive guide to regular expressions, covering syntax, operators, and advanced features with examples for various programming languages.
| | docs.rs
21.7 parsecs away

Travel
| This crate provides routines for searching strings for matches of a regular expression (aka "regex"). The regex syntax supported by this crate is similar to other regex engines, but it lacks several features that are not known how to implement efficiently. This includes, but is not limited to, look-around and backreferences. In exchange, all regex searches in this crate have worst case `O(m * n)` time complexity, where `m` is proportional to the size of the regex and `n` is proportional to the size of the string being searched.