regex, bir sözdizimi soru değil çalışma ile php fonksiyonu preg_replace

0 Cevap php

im gebelik ile değiştirin bir remove unnessary yeni hat değiştirmeye çalışıyor ama benim regex yanlıştır. Herkes benim regex ile whats yanlış herhangi bir fikir? (I have Apache/2.0.54 & PHP/5.2.9

NOW HAVE:

{
blaa {
blow;
blue};
bell;}
}ball

WOULD LIKE:

{blaa {blow;blue};bell;}}ball

These regex dont work, they remove too much or toolitle??

$buffer = preg_replace('#/\}\n|\r|\s/#s', '}', $buffer);
$buffer = preg_replace('#/\{\n|\r|\s/#s', '{', $buffer);
$buffer = preg_replace('#/\;\n|\r|\s/#s', ';', $buffer);

/g (global) gives blanc content and without the # it doestnt do anything. strange?! Anybody any clue why these dont work?

0 Cevap