Python Regex vs PHP Regex - Stack Overflow most recent 30 from stackoverflow.com2010-03-20T17:45:27Zhttp://stackoverflow.com/feeds/question/118143http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/118143/python-regex-vs-php-regex0Python Regex vs PHP RegexTeifionhttp://stackoverflow.com/users/152008-09-22T23:06:02Z2008-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#1181636Answer by nosklo for Python Regex vs PHP Regexnosklohttp://stackoverflow.com/users/171602008-09-22T23:10:13Z2008-09-22T23:10:13Z<p>It works for me. You must be doing something wrong.</p>
<pre><code>>>> 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#1181651Answer by Armin Ronacher for Python Regex vs PHP RegexArmin Ronacherhttp://stackoverflow.com/users/199902008-09-22T23:10:35Z2008-09-22T23:10:35Z<p>That regular expression matches here, no idea what you are doing wrong:</p>
<pre><code>>>> import re
>>> 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]?)')
>>> x.match("127.0.0.1")
<_sre.SRE_Match object at 0x5a8860>
>>> x.match("127.255.0.1")
<_sre.SRE_Match object at 0x5a8910>
>>> x.match("127.255.0.0")
<_sre.SRE_Match object at 0x5a8860>
</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#1181801Answer by WolfmanDragon for Python Regex vs PHP RegexWolfmanDragonhttp://stackoverflow.com/users/134912008-09-22T23:14:25Z2008-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#1181814Answer by Greg Hewgill for Python Regex vs PHP RegexGreg Hewgillhttp://stackoverflow.com/users/8932008-09-22T23:14:34Z2008-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) > 255:
return False
return True
</code></pre>
http://stackoverflow.com/questions/118143/python-regex-vs-php-regex/118182#1181822Answer by Alan Storm for Python Regex vs PHP RegexAlan Stormhttp://stackoverflow.com/users/46682008-09-22T23:14:43Z2008-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#1988823Answer by ruquay for Python Regex vs PHP Regexruquayhttp://stackoverflow.com/users/276002008-10-13T20:16:59Z2008-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>