php-src/ext/mbstring/tests/021.inc

5 lines
124 B
PHP
Raw Normal View History

2002-10-07 18:02:05 +00:00
<?php
print mb_ereg_replace( ' ', '-', 'a b c d e' )."\n";
print mb_ereg_replace( '([a-z]+)','[\\1]', 'abc def ghi' );
?>