Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: added dregex DFA implementation

...

Survey of Java regular expression libraries

LibraryAlgorithmPOSIX longest leftmost matchLicenseURL
java.util.regexBacktrackingNoJava (included as part of Java)
Jakarta OROBacktrackingNoApachehttp://attic.apache.org/projects/jakarta-oro.html
Jakarta RegexBacktrackingNoApachehttp://attic.apache.org/projects/jakarta-regexp.html
com.stevesoft.patBacktrackingUnknownLGPLhttp://www.javaregex.com/home.html
dk.brics.automatonDFAUnknownBSDhttp://www.brics.dk/automaton/index.html
JRegexBacktrackingUnknownBSDhttp://jregex.sourceforge.net/
dregexDFAUnknownBSDhttps://index.scala-lang.org/marianobarrios/dregex

Of these, the automaton library looks the most interesting from a DFA perspective.

...