MCPcopy Index your code
hub / github.com/processing/processing / matchRow

Method matchRow

core/src/processing/data/Table.java:3856–3859  ·  view source on GitHub ↗

@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)

Source from the content-addressed store, hash-verified

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 /**

Callers

nothing calls this directly

Calls 2

matchRowIndexMethod · 0.95
getColumnIndexMethod · 0.95

Tested by

no test coverage detected