String pRemoveHtmlIfNeeded(String input) { final exp = RegExp(r"<[^>]*>", multiLine: true, caseSensitive: true); return input.replaceAll(exp, ''); }