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


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


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


CppVerbalExpressions

https://github.com/VerbalExpressions/CppVerbalExpressions

C++ regular expressions made easy. [MIT]


CTRE

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

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


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


Oniguruma

https://github.com/kkos/oniguruma

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


PCRE

http://pcre.org/

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]


RE2

https://github.com/google/re2

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


SLRE

https://github.com/cesanta/slre

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


sregex

https://github.com/openresty/sregex

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


Regexper

https://regexper.com/

Regular expression visualizer using railroad diagrams


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?

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

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


JavaScript test() Method

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

Search a string for the character "e":

...


Debuggex - JavaScript Regex Cheatsheet

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


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.