How would you write a regular expression to define all strings of 0's and 1's that, as a binary number, represent an integer that is multiple of 3.
Some valid binary numbers would be:
11 110 1001 1100 1111
|
How would you write a regular expression to define all strings of 0's and 1's that, as a binary number, represent an integer that is multiple of 3. Some valid binary numbers would be: 11 110 1001 1100 1111 |
|||||||||||||
|
|
Using the DFA here we can make a regular expression the following way, where A, B, C represent the states of the DFA.
Resulting in a PCRE regex like:
Perl test/example:
Outputs:
|
||||
|
|
This has been asked a couple of times so I'm going to try for the definitive answer. When you divide a number by three, there are only three possible remainders (0, 1 and 2). What you're aiming at is to ensure the remainder is 0, hence a multiple of three. This can be done by an automata with the three states:
Now think of any non-negative number (that's our domain) and multiply it by two (tack a binary zero on to it). The transitions for that are:
Now think of any non-negative number and multiply it by two then add one (tack a binary one on to it). The transitions for that are:
This idea is that, at the end, you need to finish up in state ST0. However, given that there can be an arbitrary number of sub-expressions (and sub-sub-expressions), it does not lend itslef easily to reduction to a regular expression. What you have to do is allow for any of the transition sequences that can get from ST0 to ST0 then just repeat them: These boil down to the two RE sequences:
or the regex:
|
|||
|
|
|
http://introcs.cs.princeton.edu/java/73dfa/ 'nuff said (First Google hit to the proper question). |
||||
|
|
|
I don't think you would. I can't believe in any language using a regular expression could ever be the best way to do this. |
|||||||||||||
|
|
The answer is |
||||
|
|