Skip to content

Latest commit

 

History

History
143 lines (120 loc) · 8.06 KB

regex.md

File metadata and controls

143 lines (120 loc) · 8.06 KB

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


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,...


https://dev.to/learnbyexample/javascript-regular-expressions-cheatsheet-and-examples-4jg7

Overview of JavaScript regular expression syntax and features


https://github.com/VerbalExpressions/CppVerbalExpressions

C++ regular expressions made easy. [MIT]


https://github.com/hanickadot/compile-time-regular-expressions

A Compile time PCRE (almost) compatible regular expression matcher. [MIT]


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. [...


https://github.com/kkos/oniguruma

A modern and flexible regular expressions library that supports a variety of character encodings. [BSD]


http://pcre.org/

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]


https://github.com/google/re2

A software library for regular expressions via a finite-state machine using automata theory. [BSD-3-Clause]


https://github.com/cesanta/slre

Super Light Regexp engine for C/C++. [GPLv2/Commercial]


https://github.com/openresty/sregex

A non-backtracking NFA/DFA-based Perl-compatible regex engine library for matching on large data streams. [BSD]


https://regexper.com/

Regular expression visualizer using railroad diagrams


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?

  • 📆 published on: 2008-10-29
  • tags: url, regex

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...


https://www.w3schools.com/jsref/jsref_regexp_test.asp

Search a string for the character "e":

...


https://www.debuggex.com/cheatsheet/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...


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.