我尝试写一个 regExp ==> 独特的角色
就像那样:
'mam' => false 2*m
'man' => true all unique
'lull' => false
PS。我想要regExp,没有功能。
答案 0 :(得分:1)
我只是直接测试字符串的真或假
function isNotDup(str) {
return str.match(/^(?:(.)(?!.*?\1))+$/) ? true : false;
}
console.log('mam = ' + isNotDup('mam'));
console.log('man = ' + isNotDup('man'));
console.log('lull = ' + isNotDup('lull'));
console.log('112233abcabccba = ' + isNotDup('112233abcabccba'));