A Java library for generating String from a regular expression.
-
Updated
Apr 28, 2021 - Java
A regular expression (shortened as regex or regexp), sometimes referred to as rational expression, is a sequence of characters that specifies a match pattern in text. Usually such patterns are used by string-searching algorithms for "find" or "find and replace" operations on strings, or for input validation.
Regular expression techniques are developed in theoretical computer science and formal language theory. They are used in search engines, in search and replace dialogs of word processors and text editors, in text processing utilities such as sed and AWK, and in lexical analysis. Regular expressions are also supported in many programming languages.
Different syntaxes for writing regular expressions have existed since the 1980s, one being the POSIX standard and another, widely used, being the Perl syntax.
A Java library for generating String from a regular expression.
My solution to the Natural Language Processing course made by Dan Jurafsky, Chris Manning in Winter 2012.
Match tens of thousands of regular expressions within milliseconds - Java bindings for Intel's hyperscan 5
Descriptions of SoloLearn Coding Challenges (all 72, including pro) and solutions in C, Java, Python and Ruby
CVparser is software for parsing or extracting data out of CV/resumes.
converting regex (regular expression) to DFA directly by creating syntax tree in java
Regex: generate matching and non matching strings based on regex pattern.
Regular Expression is a Syntax to Define String Pattern
A Java library for byte pattern matching and searching
A Regular Expression game for Android
Data Structures and Algorithms in Java and Python 3
Eclipse Plug-in for tailing log files and eclipse consoles (e.g. SVN, Java Stack Trace, CDT), including syntax coloring with either a regular expression or a word match. It allows you to have multiple logs open concurrently.
A complete series of Java Implementation from Hello World to important concepts like OOPs, Multi-Threading, Exception Handling, Abstract Classes, Overloading/Overriding, and so on.
A flexible tool to make complex replacements with regular expression
Java regex library
👨🏾💻 Guia Rápido de RegEx
A simple GUI application to implement Coffee ordering, developed using Java and JavaFX
dregex is a Java library that implements a regular expression engine using deterministic finite automata (DFA). It supports some Perl-style features and yet retains linear matching time, and also offers set operations.