Reference findRows()

findRows()

Finds the rows in the Table that contain the value provided, and returns references to those rows. Returns an Array, so for must be used to iterate through all the rows, as shown in the example above. The column to search may be specified by either its ID or title.

Examples

Syntax

findRows(value, column)

Parameters

value
String:

The value to match

column
Integer|String:

ID number or title of the column to search

Returns

p5.TableRow[]: An Array of TableRow objects
This page is generated from the comments in src/io/p5.Table.js . Please feel free to edit it and submit a pull request!

Related References