Tagged Questions
11
votes
5answers
875 views
Regex implementation that can handle machine-generated regex's: *non-backtracking*, O(n)?
Edit: This question has considerably evolved since I first asked it. See below for two fast+compatible, but not completely fully featured implementations. If you know of more or better ...
7
votes
4answers
466 views
What is the complexity of regular expression?
What is the complexity with respect to the string length that takes to perform a regular expression comparison on a string?
3
votes
4answers
346 views
Best practices for regex performance VS sheer iteration
I was wondering if there are any general guidelines for when to use regex VS "string".contains("anotherString") and/or other String API calls?
While above given decision for .contains() is trivial ...