Bookmarks tagged [regex]
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
- source code
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
https://dev.to/learnbyexample/javascript-regular-expressions-cheatsheet-and-examples-4jg7
Overview of JavaScript regular expression syntax and features
- 📆 published on: 2019-12-06
- tags: javascript, regex, cheatsheet
- source code
https://github.com/VerbalExpressions/CppVerbalExpressions
C++ regular expressions made easy. [MIT]
- tags: cpp, regex
- source code
https://github.com/hanickadot/compile-time-regular-expressions
A Compile time PCRE (almost) compatible regular expression matcher. [MIT]
- tags: cpp, regex
- source code
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
- source code
https://github.com/kkos/oniguruma
A modern and flexible regular expressions library that supports a variety of character encodings. [BSD]
- tags: cpp, regex
- source code
A regular expression C library inspired by the regular expression capabilities in Perl. [BSD]
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
- source code
A software library for regular expressions via a finite-state machine using automata theory. [BSD-3-Clause]
- tags: cpp, regex
- source code
https://github.com/cesanta/slre
Super Light Regexp engine for C/C++. [GPLv2/Commercial]
- tags: cpp, regex
- source code
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
- source code
Regular expression visualizer using railroad diagrams
- tags: regex, javascript, dev-tools
- source code
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?
http://aurelio.net/regex/guia/
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
https://www.w3schools.com/jsref/jsref_regexp_test.asp
Search a string for the character "e":
...
- tags: javascript, regex
https://www.debuggex.com/cheatsheet/regex/javascript
- tags: regex, javascript
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...
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
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.