topical media & game development

talk show tell print

basic-javascript-04-ch4-examp2.htm / htm



  <html>
  <body>
  <script language="JavaScript" type="text/javascript">
  var myString = "Welcome to Wrox books. ";
  myString = myString + "The Wrox website is www.wrox.com. ";
  myString = myString + "Visit the Wrox website today. Thanks for buying Wrox";
  
  var foundAtPosition = 0;
  var wroxCount = 0;
  
  while ( foundAtPosition != -1)
  {
     foundAtPosition = myString.indexOf("Wrox",foundAtPosition);
     if (foundAtPosition != -1)
     {
        wroxCount++;
        foundAtPosition++;
     }
  }
  
  document.write("There are " + wroxCount + " occurrences of the word Wrox");
  
  </script>
  </body>
  </html>
  


(C) Æliens 20/2/2008

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.