I have two regular expressions (simple example: "[0-9]+" and "[0123456789]+"). I'd like to see if they match exactly the same inputs. Is there a built-in function for doing this check in java? If not, is there a relatively easy algorithm for doing the check? Thanks!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
First, it is exactly the same. Second, I cannot imagine built-in function that does what you want. Think: you actually want to match the regex against several inputs. What inputs? Random strings? In this case the chance that your random string contains digits only is very law. I can a little bit change your question. Here is my version. *I have 2 regular expressions and want to verify that they function equally. * This question makes sense. In this case I can write a series of unit test using one of popular unit test frameworks (e.g. JUnit or TestNG) and run the same tests against these 2 regexes. I am expecting the same results every time. But I have to write the strings myself. For example
etc, etc |
|||||||
|