Lodash - unescape 方法



语法

_.unescape([string=''])

(_.escape) 的反向操作;此方法会将字符串中的 HTML 实体 &、<、>、“和 ' 转换为其对应的字符。

参数

  • [string=''] (string) − 要取消转义的字符串。

输出

  • (string) − 返回取消转义后的字符串。

示例

var _ = require('lodash');
var result = _.unescape('Joe, Julie, &amp; Robert');

console.log(result);

将上述程序保存在 tester.js 中。运行以下命令以执行此程序。

命令

\>node tester.js

输出

Joe, Julie, & Robert
lodash_string.htm
广告