Bu, en iyi yolu ise, benim RegEx'in için, ben merak ediyorum ben var budur.
Ben ne olursa olsun tanımlayıcıları arasındaki boşluk ve olmamalıdır harf duyarlı benzer bir şey bulmak mümkün istiyorum. Ve mümkünse, sipariş dert ..
Örnek:
[Foreclosure ="Remax" URL="http://www.remax.com" Title = "4 Bedroom 2 Bath Condo"]
[Foreclosure ="Remax"URL="http://www.remax.com"Title="4 Bedroom 2 Bath Condo"]
[Foreclosure = "Remax" URL="http://www.remax.com" Title = "4 Bedroom 2 Bath Condo" ]
İşte benim mevcut Kodu bulunuyor:
function ForeclosureCode_filter( $buffer )
{
//There might be a better way to do the regex... But this seems to work...
$buffer = preg_replace_callback( '@\[Forclosure *=*"(.*?)" *url *=*"(.*?)" *title="(.*?)" *\]@si',
"ForeclosureCode_replace", $buffer );
return $buffer;
}