public static char getChar(String text){
char c =0xff;
for(int index =0;index <text.length();index ++){
c =text.charAt(index);
if(text.indexOf(c) ==text.lastIndexOf(c)) break;
}
return c;
}
public static char getChar(String text){
char c =0xff;
for(int index =0;index <text.length();index ++){
c =text.charAt(index);
if(text.indexOf(c) ==text.lastIndexOf(c)) break;
}
return c;
}