TrimmingParserExtension<R> extension

on

Methods

trim([Parser<void>? left, Parser<void>? right]) Parser<R>
Returns a parser that consumes input before and after the receiver, discards the excess input and only returns the result of the receiver. The optional arguments are parsers that consume the excess input. By default whitespace() is used. Up to two arguments can be provided to have different parsers on the left and right side.