NFA/DFA implementation in C#

前端 未结 1 754
栀梦
栀梦 2020-12-25 08:29

Does anyone know of any good NFA and DFA implementation in C#, possibly implementing as well conversions between both? What I would like would be to be able to construct a N

相关标签:
1条回答
  • 2020-12-25 09:10

    Take a look at my series of posts about this subject:

    Regular Expression Engine in C# (the Story)

    Regex engine in C# - the Regex Parser

    Regex engine in C# - the NFA

    Regex engine in C# - the DFA

    Regex engine in C# - matching strings

    0 讨论(0)
提交回复
热议问题