dart中, 如何把html中的转义字符串替换成其代表的字符
时间: 2023-02-17 20:08:29 浏览: 189
开发中总结的dart相关的技巧.docx
在Dart中,可以使用HtmlEscape类的unescape方法来将html中的转义字符串替换成其代表的字符。例如:
```
import 'dart:convert';
String htmlEscapedString = '<Hello>';
String unescapedString = HtmlEscape.unescape(htmlEscapedString);
print(unescapedString); // Output: "<Hello>"
```
阅读全文