<?php $string = 'whatever text including some $text between delimiters$ and...'; $string_replaced = preg_replace_callback('/\$[^$]*\$/', function($m) { return preg_replace('~\s+~u', ':', $m[0]); }, $string); echo $string_replaced;
You have javascript disabled. You will not be able to edit any code.