Regexps
UTF support: http://php.net/manual/en/regexp.reference.unicode.php
$text = "prase leze po <železe,zase>";
preg_match_all('/<[\pL0-9,]+>/u', $text, $matches);
# result: array(array('<železe,zase>''))
PHP syntax and basic function usage examples.
UTF support: http://php.net/manual/en/regexp.reference.unicode.php
$text = "prase leze po <železe,zase>";
preg_match_all('/<[\pL0-9,]+>/u', $text, $matches);
# result: array(array('<železe,zase>''))