Extracts all lines below the anchor line on the current page if:

  • The anchor line's left and right boundaries ("x extent") contain the target lines' x extent, or vice versa.

    Or:

  • The anchor line and target lines overlap by at least 50% of the narrower line's x extent.

Parameters
Examples

Parameters

keyvaluesdescription
id (required)column
tiebreakertiebreakerFor information about this global parameter, see Method.
includeAnchortrue, false. default: falseIncludes the anchor line in the method output

Examples

The following example shows that:

  • By default, Sensible returns the entire column as a joined string.
  • Specifying a tiebreaker returns single element in the column.

Config

{
  "fields": [
    {
      "id": "example_column",
      "anchor": "may 2020",
      "type": "string",
      "method": {
        "id": "column"
      }
    },
    {
      "id": "example_column_2",
      "anchor": "may 2020",
      "type":"number",
      "method": {
        "id": "column",
        "tiebreaker": ">"
      }
    }
  ]
}

Example document
The following image shows the example document used with this example config:

Click to enlarge

Example documentDownload link

Output

{
  "example_column": {
    "type": "string",
    "value": "1 3 2 4 5"
  },
  "example_column_2": {
    "source": "5",
    "value": 5,
    "type": "number"
  }
}