gpt4 book ai didi

javascript - 此正则表达式方言不支持条件

转载 作者:行者123 更新时间:2023-12-04 03:22:25 26 4
gpt4 key购买 nike

在我的 typescript 文件中,我想使用包含条件表达式的正则表达式,但我的 IDE 强调了带有条件表达式报告的 RegEx 部分:“此正则表达式方言不支持条件”。如何启用支持条件正则表达式的方言?

export const phoneRegEx = /^\+?\d*\s?\(?(?(?<=\()\d+\)\s?\d+(-|\s|\.)?(?:\1?\d)*|(\.|\s|-)?(\2?\d)*)$/g;

我的 package.json 文件:

{
"private": true,
"scripts": {
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "npm run production",
"production": "mix --production"
},
"devDependencies": {
"@babel/preset-react": "^7.13.13",
"@tsconfig/create-react-app": "^1.0.2",
"@types/js-cookie": "^2.2.6",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"axios": "^0.21",
"eslint": "^7.28.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"laravel-mix": "^6.0.6",
"lodash": "^4.17.19",
"postcss": "^8.1.14",
"ts-loader": "^9.2.3",
"typescript": "^4.3.2"
},
"dependencies": {
"@hookform/resolvers": "^2.5.2",
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"js-cookie": "^2.2.1",
"react-hook-form": "^7.8.3",
"react-paginate": "^7.1.3",
"react-router-dom": "^5.2.0",
"yup": "^0.32.9"
}
}

我的 tsconfig.json 文件:

{
"extends": "@tsconfig/create-react-app/tsconfig.json",
"compilerOptions": {
// "module": "CommonJS",
"target": "ES2020",
"sourceMap": true,
"jsx": "react",
"noEmit": false
},
"exclude": ["node_modules"],
"include": ["resources", "index.d.ts"]
}

我的 .eslintrc.json 文件:

{
"env": {
"browser": true,
"es2020": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2020,
"sourceType": "module",
"project": "./tsconfig.json"
// "tsconfigRootDir": "./resources"
},
"plugins": [
"react",
"@typescript-eslint",
"react-hooks"
],
"rules": {
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn"
}
}

最佳答案

问题是 JavaScript 正则表达式不支持条件构造,参见 (?(?<=\()...|...)在你的正则表达式中。这意味着只有存在 ( 时才会匹配第一个选项。 char 紧接在它之前,否则,将尝试第二种选择。

我建议通过移动 \( 来完全摆脱条件模式到后续组的第一个替代方案(同时从模式中删除 ? 使其成为强制性的):

/^\+?\d*\s?(?:\(\d+\)\s?\d+([-\s.]?)(?:\1?\d)*|([.\s-]?)(?:\2?\d)*)$/g
// ^^

参见 regex demo . 详细信息:

  • ^ - 字符串开始
  • \+? - 一个可选的 +
  • \d* - 零个或多个数字
  • \s? - 一个可选的空格
  • (?: - 非捕获组的开始:
    • \(\d+\) - ( , 一位或多位数字, )
    • \s? - 一个可选的空格
    • \d+ - 一位或多位数字
    • ([-\s.]?) - 第 1 组:可选 - , 空格或 .
    • (?:\1?\d)* - 零次或多次出现可选的第 1 组值,后跟任何一位数
    • | - 或者
    • ([.\s-]?) - 第 2 组:可选 - , 空格或 .
    • (?:\2?\d)* - 零次或多次出现可选的第 2 组值,后跟任何一位数
  • ) - 小组结束
  • $ - 字符串结束。

关于javascript - 此正则表达式方言不支持条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68245370/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com