跳至主要内容

@babel/plugin-transform-unicode-sets-regex

信息

此插件包含在 @babel/preset-env 中,位于 ES2024

此插件将使用 v 标志的正则表达式(由 RegExp 集合符号 + 字符串属性 提案引入)转换为使用 u 标志的正则表达式。

示例

交集

input.js
/[\p{ASCII}&&\p{Decimal_Number}]/v

将转换为

output.js
/[0-9]/u

差集

input.js
// Non-ASCII white spaces
/[\p{White_Space}--\p{ASCII}]/v

将转换为

output.js
/[\x85\xA0\u1680\u2000-\u200A\u2028\u2029\u202F\u205F\u3000]/u;

字符串属性

input.js
/^\p{Emoji_Keycap_Sequence}$/v.test("*\uFE0F\u20E3");
// true

将转换为

output.js
/^(?:\*️⃣|#️⃣|0️⃣|1️⃣|2️⃣|3️⃣|4️⃣|5️⃣|6️⃣|7️⃣|8️⃣|9️⃣)$/u.test("*\uFE0F\u20E3");
// true

以下是 支持的属性列表。请注意,将字符串属性与 u 标志一起使用会出错。

input.js
/\p{Emoji_Keycap_Sequence}/u
// Error: Properties of strings are only supported when using the unicodeSets (v) flag.

安装

npm install --save-dev @babel/plugin-transform-unicode-sets-regex

用法

babel.config.json
{
"plugins": ["@babel/plugin-transform-unicode-sets-regex"]
}

通过 CLI

Shell
babel --plugins @babel/plugin-transform-unicode-sets-regex script.js

通过 Node API

JavaScript
require("@babel/core").transformSync("code", {
plugins: ["@babel/plugin-transform-unicode-sets-regex"],
});