stripHtmlTags method

String stripHtmlTags()

حذف تگ‌های یک عبارت

Implementation

String stripHtmlTags() {
  return this.isNullOrEmpty()
      ? ''
      : this.replaceAll(_matchAllTags, ' ').replaceAll(' ', ' ');
}