This example uses continue statement to jump out of a loop in a method.
public class Main {
public static void main(String[] args) {
StringBuffer searchstr = new StringBuffer(
"hello how are you. ");
int length = searchstr.length();
int count = 0;
for (int i = 0; i < length; i++) {
if (searchstr.charAt(i) != 'h')
continue;
count++;
searchstr.setCharAt(i, 'h');
}
System.out.println("Found " + count
+ " h's in the string.");
System.out.println(searchstr);
}
}
Result:
The above code sample will produce the following result.