<?php $string = "Союз Советских Социалистических Республик"; $expr = '/(?<=\s|^)\w/iu'; preg_match_all($expr, $string, $matches); $result = implode('', $matches[0]); echo $result = strtoupper($result);
You have javascript disabled. You will not be able to edit any code.