mirror of
https://github.com/php/php-src.git
synced 2026-03-27 17:52:16 +01:00
6 lines
153 B
PHP
6 lines
153 B
PHP
<?php
|
|
mb_regex_set_options( '' );
|
|
print mb_ereg_replace( ' ', '-', 'a b c d e' )."\n";
|
|
print mb_ereg_replace( '([a-z]+)','[\\1]', 'abc def ghi' );
|
|
?>
|