Processing Lists with while Loops : while « Statement « Flash / Flex / ActionScript






Processing Lists with while Loops

 

package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){
        var address = "me@moock.org";
        var isValidAddress = false;
        var i = 0;
        
        while (i < address.length) {
          if (address.charAt(i) == "@") {
            isValidAddress = true;
          }
          i++;
        }

    }
  }
}

        








Related examples in the same category

1.while Statement
2.A while statement can be used even when the number of times is unknown.
3.Use while loop to calculate 2 to the power of 3
4.Use the increment operator with while loop
5.Ending a while Loop with the break Statement
6.Use while loop to sum 100 ramdom numbers