Lodash _.unescape() 方法
Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。
_.unescape() 方法用于转换 HTML 实体,如 & , < , > , "和'在给定的 字符串为其对应的字符。
句法:
_.unescape( string )
参数:此方法接受如上所述和如下所述的单个参数:
- 字符串:它是用于未转义的字符串。
返回值:此方法返回未转义的字符串。
示例 1:
Javascript
// Defining Lodash variable
const _ = require('lodash');
// The string to unescape
var str = "fit & fine";
// Using _.unescape() method
console.log(_.unescape(str));
Javascript
// Defining Lodash variable
const _ = require('lodash');
// The string to unescape
var str = ""Heyy"";
// Using _.unescape() method
console.log(_.unescape(str));
输出:
fit & fine
示例 2:
Javascript
// Defining Lodash variable
const _ = require('lodash');
// The string to unescape
var str = ""Heyy"";
// Using _.unescape() method
console.log(_.unescape(str));
输出:
"Heyy"