Skip to content

Instantly share code, notes, and snippets.

@FatihBAKIR
Created October 12, 2014 19:37
Show Gist options
  • Save FatihBAKIR/1180521ce1c306873751 to your computer and use it in GitHub Desktop.
Save FatihBAKIR/1180521ce1c306873751 to your computer and use it in GitHub Desktop.
function fixBkz($entry)
{
$pattern = "/\(bkz: *(.*?) *\)/";
$replacement = '(bkz: $1)';
return preg_replace($pattern, $replacement, $entry);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment