如何在必须遵循条件的javascript中编写正则表达式
cn=<name>,ou=<name>,o=<bic8>,o=swift
,
分隔。 <name>
部分必须至少包含2个字符和最多20个字母数字字符。字符应为小写。只允许使用一个特殊字符,即-
(Hypen)。 <name>
部分最多可包含2位数字。提前致谢
答案 0 :(得分:2)
我认为.split()
在这种情况下更容易使用。
首先将整个字符串拆分为,
,然后将结果数组的每个单独段拆分为=
。
特别是在一个明确定义的规范中,split足以处理它。
答案 1 :(得分:0)
下面是未经测试的代码,如果它炸毁了你的电脑,请不要怪我:
var parseDn(str)
var m = /^cn=(.*?),ou=(.*?),o=(.*?),o=swift$/.exec(str);
if (!m) { return null; } // (a) and (b).
if (s.length > 100) { return null; } // (c).
if (/\s/.exec(s)) { return null; } // (d).
var x = {cn:m[1], ou:m[2], o:m[3]};
var isValidName = function(s) { return (/^[a-z-]{2,20}$/).exec(s); }
if (!isValidName(x.cn) || !isValidName(x.ou) || !isValidName(x.o)) {
return null; // (f).
}
var countNumbers = function(s) { return s.replace(/\D/g, "").length; }
if (countNumbers(x.cn)>2 || countNumbers(x.ou)>2 || countNumbers(x.o)>2) {
return null; // (g).
}
return x; // => {"cn":"name", "ou":"name", "o":"bic8"}
}
请注意,(e)和关于“段”的一些要点完全没有检查,因为描述含糊不清。但这应该让你开始......