simplifyText method

String simplifyText()

Implementation

String simplifyText() {
  String value = this.replaceAll('&amp', '&');
  value = value.replaceAll('amp', '&');
  value = value.replaceAll('&', '&');
  value = value.replaceAll('"', '"');
  return value;
}