Monday, September 20, 2010

Continue with label demo

 test:
        for (int i = 0; i <= max; i++) {
            int n = substring.length();
            int j = i;
            int k = 0;
            while (n-- != 0) {
                if (searchMe.charAt(j++!= substring.charAt(k++)) {
                    continue test;
                }
            }    
            foundIt = true;
            break test;
        }

No comments:

Post a Comment

Chitika