Skip to content

Instantly share code, notes, and snippets.

@Tricktionary
Tricktionary / itme.gif
Created November 7, 2019 15:52 — forked from epk/itme.gif
itme.gif
@Tricktionary
Tricktionary / infix-to-postfix-regexp.js
Created September 27, 2017 00:00 — forked from Winiex/infix-to-postfix-regexp.js
JavaScript : Infix to postfix notation RegExp converter
/**
* Infix to postfix notation RegExp converter
*
* To implement RegExp machine (NFA, DFA) we need
* to transform first RegExp string to postfix notation
* for more convinient work with the stack. This function
* does exactly this.
*
* See: http://swtch.com/~rsc/regexp/regexp1.html
*