String str = "and ovstpriech"; String result = ""; for (int i = 0; i < str.length(); i++) { if ((i % 3) != 2) { result += str.charAt(i); } } System.out.println(result);