-
Updated
Mar 3, 2022 - Rust
nfa
Here are 195 public repositories matching this topic...
-
Updated
Jan 24, 2022 - C
-
Updated
Mar 1, 2022 - Java
-
Updated
Mar 2, 2022 - Rust
-
Updated
Feb 28, 2022 - Java
-
Updated
Oct 4, 2020 - C
-
Updated
Aug 5, 2020 - OCaml
-
Updated
May 23, 2021 - Python
-
Updated
Nov 23, 2021 - Python
-
Updated
Feb 26, 2022 - TypeScript
-
Updated
Jun 8, 2021 - C++
-
Updated
May 24, 2020 - Python
-
Updated
Nov 16, 2021 - Python
-
Updated
Mar 1, 2022 - Java
-
Updated
Nov 20, 2018 - Python
-
Updated
Nov 1, 2021 - TypeScript
-
Updated
Oct 7, 2020 - JavaScript
-
Updated
Feb 22, 2022 - C
-
Updated
Jun 18, 2020 - VHDL
It'd be great to have DFA implementations in more languages, a few of which could be as follows:
- Rust (taken)
- Scala
- Julia
- C
- Ruby
- Kotlin
- Java (taken)
If you would like to contribute in another language that is not mentioned in the above list, then please feel free to do so! Leave a comment mentioning the language you would like to contribute in!
-
Updated
Aug 3, 2020 - Python
after converting nfa to dfa, converted dfa is not saving in the localStorage immediately,
and if refresh the browser, previous nfa will be showing
-
Updated
Feb 3, 2019 - C++
-
Updated
May 21, 2021 - Python
Improve this page
Add a description, image, and links to the nfa topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the nfa topic, visit your repo's landing page and select "manage topics."

Would it be possible to have the regex parser support character classes like
\wwithin other character classes? I had a regex pattern earlier that used the character class[0-9a-zA-Z_\.-], and I attempted to simplify it with[\w\.\-]. I didn't notice this library doesn't support doing that, and was wondering just how difficult that would be to implement. For the time being i'm just expanding