gpt4 book ai didi

javascript - 如何在 JavaScript 正则表达式中连接字符串?

转载 作者:行者123 更新时间:2023-12-02 19:22:15 27 4
gpt4 key购买 nike

我有以下表达式,

var exp = new RegExp('^[a-zA-Z0-9]' + getMinMax() + '$');

我的 getMinMax() 函数动态返回值,例如 {2,5} 等!

但是它返回一个异常,它说正则表达式中有语法错误。我该如何纠正它?

function getMinMax() {
var minLength = Rule.MinimumLength,maxLength = Rule.MaximumLengh;
var limitExpression = (minLength != 'undefined' && minLength != null ) ? minLength.toString() : '';

limitExpression = (maxLength != 'undefined' && maxLength != null ) ? (limitExpression != '' && limitExpression != null) ? ('{' + limitExpression + ',' + maxLength.toString() + '}') : ('{' + maxLength.toString() + '}') : '';

return limitExpression;
}

最佳答案

您的代码works就好了。

我敢打赌,您的 Rule 中有一个小拼写错误对象,所以代替 Rule.MaximumLengh ,你可能应该有Rule.MaximumLength .

另外,作为建议,不要使用这么多链式三元运算符,它们真的很难阅读。

关于javascript - 如何在 JavaScript 正则表达式中连接字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12407990/

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