String nome;
int p = textField.getText().indexOf("'");
if (p != -1) {
nome = nome.substring(0, p) + "'" + nome.substring(p);
}
:adhone:
String nome;
int p = textField.getText().indexOf("'");
if (p != -1) {
nome = nome.substring(0, p) + "'" + nome.substring(p);
}
:adhone: