[PHP] pobierz, plaintext <?php $strText = 'jakiś tekst z tabulatorami';$strText = str_replace( "t", '<zamiennik>', $strText ); echo $strText; // wszystkie taby zostały zamienione na <zamiennik> ?>[PHP] pobierz, plaintext