Yo lo tomo como un conjunto de pasos para resolver un problema.
PD: No creo que esto vaya en este subforo, saludos.
PD: No creo que esto vaya en este subforo, saludos.
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menústr = str.replaceAll("^\\-|[^0-9\\-]|\\-$", "");
str = str.replaceAll("^\\-|[^0-9\\-]|\\-$", "");
while(str.contains("--")){
str = str.replaceAll("\\-\\-", "-");
}
public void insertString(int offset, String str, AttributeSet attr) throws BadLocationException {
if (str == null) return;
if ((getLength() + str.length()) <= limit) {
super.insertString(offset, str.replaceAll("([^\\d]+){1,3}", "-"), attr);
} else if (getLength() <= limit) {
super.insertString(offset, str.substring(0, limit-getLength()).replaceAll("([^\\d]+){1,3}", "-"), attr);
}
}
public void insertString(int offset, String str, AttributeSet attr) throws BadLocationException {
if (str == null) return;
if ((getLength() + str.length()) <= limit) {
super.insertString(offset, str.replaceAll("([^\\d]+){1,3}", "-"), attr);
} else if (getLength() <= limit) {
super.insertString(offset, str.substring(0, limit-getLength()), attr);
}
}