regex.md
July 15, 2021 · View on GitHub
Bookmarks tagged [regex]
www.codever.land/bookmarks/t/regex
GitHub - epoberezkin/fast-deep-equal
https://github.com/epoberezkin/fast-deep-equal
The fastest deep equality check with Date, RegExp and ES6 Map, Set and typed arrays support - epoberezkin/fast-deep-equal
- tags: javascript, ecmascript-6, regex, regexp
- :octocat: source code
Regular Expressions - JavaScript | MDN
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions
Regular expressions are patterns used to match character combinations in strings. In JavaScript, regular expressions are also objects. These patterns are used with the exec and test methods of RegExp,...
- tags: javascript, regex
JavaScript regular expressions cheatsheet and examples
https://dev.to/learnbyexample/javascript-regular-expressions-cheatsheet-and-examples-4jg7
Overview of JavaScript regular expression syntax and features
- :calendar: published on: 2019-12-06
- tags: javascript, regex, cheatsheet
- :octocat: source code
CppVerbalExpressions
https://github.com/VerbalExpressions/CppVerbalExpressions
C++ regular expressions made easy. [MIT]
- tags: cpp, regex
- :octocat: source code
CTRE
https://github.com/hanickadot/compile-time-regular-expressions
A Compile time PCRE (almost) compatible regular expression matcher. [MIT]
- tags: cpp, regex
- :octocat: source code
Hyperscan
https://github.com/intel/hyperscan
Hyperscan is a high-performance multiple regex matching library by Intel. Provides simultaneous matching of large numbers of regexps (up to tens of thousands). Typically used in a DPI library stack. [...
- tags: cpp, regex
- :octocat: source code
Oniguruma
https://github.com/kkos/oniguruma
A modern and flexible regular expressions library that supports a variety of character encodings. [BSD]
- tags: cpp, regex
- :octocat: source code
PCRE
A regular expression C library inspired by the regular expression capabilities in Perl. [BSD]
PIRE
https://github.com/yandex/pire
Perl Incompatible Regular Expressions library by Yandex. Can be really fast (more than 400 MB/s). [LPGL v3.0]
- tags: cpp, regex
- :octocat: source code
RE2
A software library for regular expressions via a finite-state machine using automata theory. [BSD-3-Clause]
- tags: cpp, regex
- :octocat: source code
SLRE
https://github.com/cesanta/slre
Super Light Regexp engine for C/C++. [GPLv2/Commercial]
- tags: cpp, regex
- :octocat: source code
sregex
https://github.com/openresty/sregex
A non-backtracking NFA/DFA-based Perl-compatible regex engine library for matching on large data streams. [BSD]
- tags: cpp, regex
- :octocat: source code
Regexper
Regular expression visualizer using railroad diagrams
- tags: regex, javascript, dev-tools
- :octocat: source code
The Problem With URLs
https://blog.codinghorror.com/the-problem-with-urls/
URLs are simple things. Or so you'd think. Let's say you wanted to detect an URL in a block of text and convert it into a bona fide hyperlink. No problem, right?
Expressões Regulares - Guia de Consulta Rápida
http://aurelio.net/regex/guia/
Regular Expressions - JavaScript | MDN
https://developer.mozilla.org/en/docs/Web/JavaScript/Guide/Regular_Expressions
Regular expressions are patterns used to match character combinations in strings. In JavaScript, regular expressions are also objects. These patterns are used with the exec and test methods of `Re...
- tags: javascript, regex
JavaScript test() Method
https://www.w3schools.com/jsref/jsref_regexp_test.asp
Search a string for the character "e":
...
- tags: javascript, regex
Debuggex - JavaScript Regex Cheatsheet
https://www.debuggex.com/cheatsheet/regex/javascript
- tags: regex, javascript
Lesson: Regular Expressions (The Java™ Tutorials > Essential Classes)
http://docs.oracle.com/javase/tutorial/essential/regex/index.html
This lesson explains how to use the `java.util.regex API for pattern matching with regular expressions. Although the syntax accepted by this package is similar to the Perl prog...
Regular Expression Tutorial - Learn How to Use Regular Expressions
http://www.regular-expressions.info/tutorial.html
This tutorial teaches you all you need to know to be able to craft powerful time-saving regular expressions. It starts with the most basic concepts, so that you can follow this tutorial even if you kn...
- tags: regex
Java Regex - Tutorial
http://www.vogella.com/tutorials/JavaRegularExpressions/article.html
This tutorial introduces the usage of regular expressions and describes their implementation in Java. It also provides several Java regular expression examples.