fork download
  1. <?php
  2.  
  3. $palavra = "àñáçâçí"; // 7 letras
  4.  
  5. function tirarAcentos($string){
  6. return preg_replace(array("/(á|à|ã|â|ä)/","/(Á|À|Ã|Â|Ä)/","/(é|è|ê|ë)/","/(É|È|Ê|Ë)/","/(í|ì|î|ï)/","/(Í|Ì|Î|Ï)/","/(ó|ò|õ|ô|ö)/","/(Ó|Ò|Õ|Ô|Ö)/","/(ú|ù|û|ü)/","/(Ú|Ù|Û|Ü)/","/(ñ)/","/(Ñ)/","/(ç)/","/(Ç)/"),explode(" ","a A e E i I o O u U n N c C"),$string);
  7. }
  8.  
  9. $sem = tirarAcentos($palavra);
  10.  
  11. $i = 0;
  12. while(!empty($sem[$i])){
  13. $i++;
  14. }
  15. echo $i;
Success #stdin #stdout 0.02s 24112KB
stdin
Standard input is empty
stdout
7