<?php $re = '/(\w+)/u'; $str = 'Катя, Валя, Таня, Настя'; $subst = '<a href=\"$1\">$1</a>'; echo preg_replace($re, $subst, $str);
Standard input is empty
<a href=\"Катя\">Катя</a>, <a href=\"Валя\">Валя</a>, <a href=\"Таня\">Таня</a>, <a href=\"Настя\">Настя</a>
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!