说明

通过以下表达式中的一种,过滤文本单行的长度:
  • 小于指定长度:line.length < 10
  • 大于指定长度:line.length > 100
  • 区间外:line.length < 10 || line.length > 100
  • 区间内:line.length > 10 && line.length < 100