matchUrlPartially method

LogicalChannel matchUrlPartially(
  1. String value
)
inherited

Matches Tweets with URLs that literally contain the given phrase or keyword.

To search for patterns with punctuation in them (i.e. google.com) enclose the search term in quotes.

Note: This will match against the expanded URL as well.

Parameters

  • value: Keyword to be partially matched.

Type

Availability

  • Essential

Implementation

LogicalChannel matchUrlPartially(final String value) =>
    _buffer.appendOperator(
      _standaloneOperation.createUrlContains(value),
    );