public static String schneide(String s, int k){ String g = ""; for(int j=k; j<s.length(); j++){ g += s.charAt(j); } return g; }