hasHTMLEntity function

bool hasHTMLEntity(
  1. String s
)

Implementation

bool hasHTMLEntity(String s) {
  return _patternHtmlEntity.hasMatch(s);
}