public static void main(String[] args) { String s= "ABC-DEF"; String[] ss = s.split("-"); s= ss[1]+"-"+ss[0]; System.out.println(s); }