Python Regex vs PHP Regex - Stack Overflow most recent 30 from stackoverflow.com 2010-03-20T17:45:27Z http://stackoverflow.com/feeds/question/118143 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/118143/python-regex-vs-php-regex 0 Python Regex vs PHP Regex Teifion http://stackoverflow.com/users/15 2008-09-22T23:06:02Z 2008-10-13T20:16:59Z <p>No not a competition, it is instead me trying to find why a certain regex works in one but not the other.</p> <pre><code>(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?) </code></pre> <p>That's my Regex and I'm trying to run it on</p> <pre><code>127.255.0.0 </code></pre> <p>Using Pythons regex I get nothing, using PHP I match it, below are the two calls I am making (just incase it's something to do with that). Essentially I am trying to work out why it works in PHP but not Python.</p> <pre><code>re.findall(regex, string) preg_match_all($regex, $string, $matches); </code></pre> <p><hr> Solution found, it was due to the way that I was iterating through the results, this regex turned them into groups and then it didn't want to print them out in the same way etc etc. Thank you all for your help, it's really appreciated :)</p> http://stackoverflow.com/questions/118143/python-regex-vs-php-regex/118163#118163 6 Answer by nosklo for Python Regex vs PHP Regex nosklo http://stackoverflow.com/users/17160 2008-09-22T23:10:13Z 2008-09-22T23:10:13Z <p>It works for me. You must be doing something wrong.</p> <pre><code>&gt;&gt;&gt; re.match(r'(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)', '127.255.0.0').groups() ('127', '255', '0', '0') </code></pre> <p>Don't forget to escape the regex using raw strings: <code>r'regex_here'</code> as stated in the <a href="http://docs.python.org/dev/howto/regex.html" rel="nofollow">Regex Howto</a></p> http://stackoverflow.com/questions/118143/python-regex-vs-php-regex/118165#118165 1 Answer by Armin Ronacher for Python Regex vs PHP Regex Armin Ronacher http://stackoverflow.com/users/19990 2008-09-22T23:10:35Z 2008-09-22T23:10:35Z <p>That regular expression matches here, no idea what you are doing wrong:</p> <pre><code>&gt;&gt;&gt; import re &gt;&gt;&gt; x = re.compile(r'(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|' ... r'2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9]' ... r'[0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)') &gt;&gt;&gt; x.match("127.0.0.1") &lt;_sre.SRE_Match object at 0x5a8860&gt; &gt;&gt;&gt; x.match("127.255.0.1") &lt;_sre.SRE_Match object at 0x5a8910&gt; &gt;&gt;&gt; x.match("127.255.0.0") &lt;_sre.SRE_Match object at 0x5a8860&gt; </code></pre> <p>Please note that <code>preg_match</code> translates to <code>re.search</code> in Python and not <code>re.match</code>. <code>re.match</code> is for useful for lexing because it's anchored.</p> http://stackoverflow.com/questions/118143/python-regex-vs-php-regex/118180#118180 1 Answer by WolfmanDragon for Python Regex vs PHP Regex WolfmanDragon http://stackoverflow.com/users/13491 2008-09-22T23:14:25Z 2008-09-22T23:14:25Z <p><a href="http://www.regular-expressions.info/php.html" rel="nofollow">PHP</a> uses 3 different flavors of regex, while python uses only one. I don't code in python, so I make no expert claims on how it uses REGEX. <a href="http://oreilly.com/catalog/9781565922570/" rel="nofollow">O'Reilly Mastering Regular Expressions</a> is a great book, as most of their works are.</p> http://stackoverflow.com/questions/118143/python-regex-vs-php-regex/118181#118181 4 Answer by Greg Hewgill for Python Regex vs PHP Regex Greg Hewgill http://stackoverflow.com/users/893 2008-09-22T23:14:34Z 2008-09-22T23:27:33Z <p>I would suggest that using a regex for decimal range validation is not necessarily the correct answer for this problem. This is far more readable:</p> <pre><code>def valid_ip(s): m = re.match(r"(\d+)\.(\d+)\.(\d+)\.(\d+)$", s) if m is None: return False parts = [int(m.group(1+x)) for x in range(4)] if max(parts) &gt; 255: return False return True </code></pre> http://stackoverflow.com/questions/118143/python-regex-vs-php-regex/118182#118182 2 Answer by Alan Storm for Python Regex vs PHP Regex Alan Storm http://stackoverflow.com/users/4668 2008-09-22T23:14:43Z 2008-09-22T23:14:43Z <p>Without further details, I'd guess it's quote escaping of some kind. Both PHP and python's RegEX objects take strings as arguments. These strings will be escaped by the languge before being passed on to the RegEx engine.</p> <p>I always using Python's "raw" string format when working with regular expressions. It ensure that "<a href="http://www.amk.ca/python/howto/regex/" rel="nofollow">backslashes are not handled in any special way</a>"</p> <pre><code>r'(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)' </code></pre> http://stackoverflow.com/questions/118143/python-regex-vs-php-regex/198882#198882 3 Answer by ruquay for Python Regex vs PHP Regex ruquay http://stackoverflow.com/users/27600 2008-10-13T20:16:59Z 2008-10-13T20:16:59Z <p>Just because you <em>can</em> do it with regex, doesn't mean you should. It would be much better to write instructions like: split the string on the period, make sure each group is numeric and within a certain range of numbers.</p> <p>If you want to use a regex, just verify that it kind of "looks like" an IP address, as with Greg's regex.</p>