<?php $str = '"hello world" how are you?'; echo preg_replace_callback('~("[^"]+")|\S+~', function($m) { return isset($m[1]) ? "+" . $m[1] : "+" . $m[0] . "*"; }, $str);
You have javascript disabled. You will not be able to edit any code.