JavaScript: 如何提取字符串中的 SVG 标签和内容
从字符串中提取 SVG 标签和内容在 JavaScript 中,你可以使用正则表达式轻松地从字符串中提取 SVG 标签及其内容。以下是一个示例代码,演示如何实现:javascriptconst str = ' ';const regex = /<svg[^>]>([/s/S]?)<//svg>/;const match = str.match(regex);if (match) { const svgTag = match[0]; // 完整 SVG 标签 const svgContent = match[1]; // SVG 内容 console.log(svgTag); console.log(svgContent)
原文地址: https://www.cveoy.top/t/topic/fTLU 著作权归作者所有。请勿转载和采集!