stock f_replace(str[], start, end, const chr){for( new i = start; i < end; i++ ){ if( str != \' \' ) { str = chr;}}}
new str[15] = \"Teszt példa.\";f_replace( str, 2, 7, \'*\');print( str );
Te*** *élda.