Description

The following expressions filter the length of a single line of text:
  • Less than a specified length: line.length < 10
  • Greater than a specified length: line.length > 100
  • Outside the specified range: line.length < 10 || line.length > 100
  • Within the specified range: line.length > 10 && line.length < 100