php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #19853 preg_split, PREG_SPLIT_DELIM_CAPTURE does not capture the delimiter
Submitted: 2002-10-10 13:24 UTC Modified: 2002-10-10 13:32 UTC
From: lange at haas-media dot de Assigned:
Status: Not a bug Package: PCRE related
PHP Version: 4.2.2 OS: Redhat Linux 7.2
Private report: No CVE-ID: None
 [2002-10-10 13:24 UTC] lange at haas-media dot de
$test = 'This is a text with an $id inside';

$matches = preg_split('#(\$[a-z]*)#', $test,
PREG_SPLIT_DELIM_CAPTURE);

echo '<pre>';
print_r($matches);
echo '</pre>';

expected output:
Array
(
    [0] => "This is a text with an "
    [1] => $id
    [2] => " inside"
)

output produced in the real world:
Array
(
    [0] => "This is a text with an "
    [1] => " inside"
)

maybe this will help to hunt the bug down.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-10-10 13:32 UTC] lange at haas-media dot de
$test = 'This is a text with an $id inside';

$matches = preg_split('#(\$[a-z]*)#', $test,
PREG_SPLIT_DELIM_CAPTURE);

echo '<pre>';
print_r($matches);
echo '</pre>';

expected output:
Array
(
    [0] => "This is a text with an "
    [1] => $id
    [2] => " inside"
)

output produced in the real world:
Array
(
    [0] => "This is a text with an "
    [1] => " inside"
)

maybe this will help to hunt the bug down.
-- edit
important note: actually no bug at all, missed the limit param.
---
a wise man said: do not report a bug after a hard 10 hour work day.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 05:01:29 2024 UTC