Al buscar Expresiones regulares "+, *, ?" al filtrar datos de jtable me manda error
cuando busco juan + carlos no me encuentra el buscador
trsFiltro = new TableRowSorter<TableModel>(modelo);
trsFiltro.setRowFilter(RowFilter.regexFilter("(?i)"+jTextField1.getText(), 3));
jTable1.setRowSorter(trsFiltro);
El error cuando busco +
Exception in thread "AWT-EventQueue-0" java.util.regex.PatternSyntaxException: Dangling meta character '+' near index 4
(?i)+
Como puedo deshabilitar expresion regular para que me funcione normal el buscador