| 
	
 | 
 Posted by Disco Octopus on 06/15/78 11:43 
Chung Leong wrote: 
> Justin Koivisto wrote: 
>> Disco Octopus wrote: 
>>> Hi, 
>>> 
>>> I think I am need of a regular expression with regards to a str_replace 
>>> need that I have... 
>>> 
 
<....> 
 
>> 
>> You would need to use both a zero-width negative look-ahead and a 
>> zero-width negative look-behind with prel style regex... 
>> 
>> <?php 
 
<great stuff> 
 
>> ?> 
 
>  
> \r, \n, \t are covered by \s already, so there is no need to specify 
 
<more great stuff> 
 
>  
> $search = array('`\{(?!\s)`', '`(?<!\s)\}`'); 
> $replace= array('{ ', ' }'); 
> $s=preg_replace($search,$replace,$s); 
 
Thanks very much Juston and Chung.  This works like a charm for me, and is 
hugely appreciated. 
 
--  
if it itches, it will be scratched
 
[Back to original message] 
 |