d

dregex

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.
https://github.com/marianobarrios/dregex
BSD 2-Clause "Simplified" License
Mariano Barrios
Files download
File Operation
dregex-0.8.0.jar download
dregex-0.8.0.pom download
dregex-0.8.0-sources.jar download
Apache Maven
<dependency>
  <groupId>com.github.marianobarrios</groupId>
  <artifactId>dregex</artifactId>
  <version>0.8.0</version>
</dependency>
Gradle Groovy
implementation 'com.github.marianobarrios:dregex:0.8.0'
Gradle Kotlin
implementation("com.github.marianobarrios:dregex:0.8.0")
Scala SBT
libraryDependencies += "com.github.marianobarrios" % "dregex" % "0.8.0"
Groovy Grape
@Grapes(
  @Grab(group='com.github.marianobarrios', module='dregex', version='0.8.0')
)
Apache Ivy
<dependency org="com.github.marianobarrios" name="dregex" rev="0.8.0" />
Leiningen
[com.github.marianobarrios/dregex "0.8.0"]
Apache Buildr
'com.github.marianobarrios:dregex:jar:0.8.0'