基础算法之"正则类"

题目:459. 重复的子字符串

function repeatedSubstringPattern(str) {
    return /^(\w+)\1+$/.test(str);
}

export default repeatedSubstringPattern;

你可能感兴趣的:(基础算法之"正则类")