Improved String::insert by support placeholders with after sequence during cleanup

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6869 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
the_undefined 2008-05-14 16:31:44 +00:00
parent 7308c3e5d4
commit 72c37d429e
2 changed files with 8 additions and 6 deletions

View file

@ -246,13 +246,15 @@ class String extends Object {
), $options);
$kleenex = sprintf(
'/(%s%s%s|%s%s%s)/',
$options['before'],
'/(%s%s%s%s|%s%s%s%s)/',
preg_quote($options['before'], '/'),
$options['clean']['word'],
preg_quote($options['after'], '/'),
$options['clean']['gap'],
$options['clean']['gap'],
$options['before'],
$options['clean']['word']
preg_quote($options['before'], '/'),
$options['clean']['word'],
preg_quote($options['after'], '/')
);
$str = preg_replace($kleenex, '', $str);
}

View file

@ -121,9 +121,9 @@ class StringTest extends UnitTestCase {
$result = String::insert($string, array('a' => 1, 'b' => 2), array('clean' => true));
$this->assertEqual($result, $expected);
$string = '":a, :b and :c"';
$string = '"${a}, ${b} and ${c}"';
$expected = '"1, 2"';
$result = String::insert($string, array('a' => 1, 'b' => 2), array('clean' => true));
$result = String::insert($string, array('a' => 1, 'b' => 2), array('before' => '${', 'after' => '}', 'clean' => true));
$this->assertEqual($result, $expected);
}