正则表达式匹配完全由唯一字符组成的字符串

时间:2017-06-03 00:51:11

标签: javascript regex

我尝试写一个 regExp ==> 独特的角色

就像那样:

'mam' => false 2*m
'man' => true all unique
'lull' => false

PS。我想要regExp,没有功能。

1 个答案:

答案 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'));