@webref table:method @brief Finds a row that matches the given expression @param regexp the regular expression to match @param column ID number of the column to search @see Table#getRow(int) @see Table#rows() @see Table#findRow(String, int) @see Table#findRows(String, int) @see Table#matchRows(Strin
(String regexp, int column)
| 3854 | * @see Table#matchRows(String, int) |
| 3855 | */ |
| 3856 | public TableRow matchRow(String regexp, int column) { |
| 3857 | int row = matchRowIndex(regexp, column); |
| 3858 | return (row == -1) ? null : new RowPointer(this, row); |
| 3859 | } |
| 3860 | |
| 3861 | |
| 3862 | /** |
nothing calls this directly
no test coverage detected