html.ts 196 B

12345678
  1. export function getHtmlText(html: string, trimSpace?: boolean) {
  2. const text = html.replace(/<[^<>]+>/g, '');
  3. if (trimSpace) {
  4. return text.replace(/\s/g, '');
  5. }
  6. return text;
  7. }