escapeForward method

int escapeForward(
  1. BlockParser parser,
  2. String line,
  3. int index
)

Escapes the character at index, if necessary, by returning the next index to continue the splitting of a row.

Default: it returns index directly. That is, no custom escape at all.

Implementation

int escapeForward(BlockParser parser, String line, int index)
=> index;