Serach String from Pagragraph using JavaScript?

  1. <script type="text/javascript" language="JavaScript1.1">  
  2. <!--  
  3. // Declare variables  
  4. var pos = 0;  
  5. var num = -1;  
  6. var i = -1;  
  7. var graf = "This is a test This is a test  This is a test dsadasad This is a test adadasdsa This is a test fdsfdsfdsf This is a test  ";  
  8.   
  9. // Search the string and counts the number of e's  
  10. while (pos != -1)
  11. {  
  12.       pos = graf.indexOf("This is a test", i + 1);  
  13.       num += 1;  
  14.       i = pos;  
  15. }  
  16.   
  17. // Write the response to the page  
  18. document.write(graf+"<br>")  
  19. document.write("There were " + num + " e's in that paragraph."); document.close();  
  20. //-->  
  21. </script>This is a test This is a test  This is a test dsadasad This is a test adadasdsa This is a test fdsfdsfdsf This is a test  <br>There were 6 e's in that paragraph.