$co=str_replace("1 . ","1. ",$co); // odstranění nadměrných mezer pro 1. třídu $co=str_replace("2 . ","2. ",$co); // odstranění nadměrných mezer pro 2 ...
This is a very naive implementation of the PHP function str_replace in C. I wrote it in purpuse to learn C basics. Basically, it search for the index of the searched word in the subject string. If no ...