matchKeyword method

LogicalChannel matchKeyword(
  1. String value
)
inherited

Matches a keyword within the body of a Tweet.

This is a tokenized match, meaning that your keyword string will be matched against the tokenized text of the Tweet body. Tokenization splits words based on punctuation, symbols, and Unicode basic plane separator characters.

Parameters

  • value: String to be matched.

Type

Availability

  • Essential

Implementation

LogicalChannel matchKeyword(final String value) => _buffer.appendOperator(
      _standaloneOperation.createKeyword(value),
    );