1. 程式人生 > >JavaScript String 檢測字母出現個數

JavaScript String 檢測字母出現個數

class sdh txt str 檢測 color nop position asn

 1 <script>
 2 var txt="ABCDEFGHIJKLMNOPQRSTUVWXYZvshjkdjlksdhbasndhbawnieoqawinsbdvhzohcvikzbncxiouj";
 3 var index=0,count=0,position=0;
 4 index = txt.indexOf("h",position);
 5 document.getElementById("demo").innerHTML=index;
 6 while(index!=-1){
 7         count++;
 8            position = index + 1;
9 index = txt.indexOf("h",position); 10 } 11 document.getElementById("demo").innerHTML=count; 12 </script>

JavaScript String 檢測字母出現個數