[PHP-DEV] Bug #12688 Updated: preg_match doesn't return newlines in match array From: alindeman <email protected>
Date: 08/10/01

ID: 12688
Updated by: alindeman
Reported By: jax <email protected>
Status: Bogus
Bug Type: *Regular Expressions
Operating System: FreeBSD 4.2
PHP Version: 4.0.6
New Comment:

that is exactly how it works in perl (and I got the answer to
your bug from my Perl book...)

Previous Comments:
------------------------------------------------------------------------

[2001-08-10 10:56:39] jax <email protected>

Why is this bug bogus? Isn't it a valid bug when something doesn't Work As Advertised or doesn't Work As Expected? If these are really perl-compatible regexp functions, this is a real, valid bug.

------------------------------------------------------------------------

[2001-08-10 08:49:31] alindeman <email protected>

add an "s" to the end of your reg exp.

                                           
if (preg_match('/Here(.*)$/s',$someline,$matches)){
                                         ^
                                         
this mean "treat everything as one line" and it will parse the
newline.

------------------------------------------------------------------------

[2001-08-10 02:20:48] jax <email protected>

This is not a core dump, but rather an output problem with preg_match. Here is a short script:

$someline = "Here is some line.\n";
if ( preg_match('/Here(.*)$/',$someline,$matches) ) {
  $out = $matches[1];
}

print "<pre>[$out]</pre>";

$out now contains no newline when this clearly should be included!

--Liam

------------------------------------------------------------------------

Edit this bug report at http://bugs.php.net/?id=12688&edit=1

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>