码迷,mamicode.com
首页 > 其他好文 > 详细

重复的子字符串

时间:2020-01-26 16:00:55      阅读:50      评论:0      收藏:0      [点我收藏+]

标签:mic   alt   regex   script   return   tps   http   global   developer   

技术图片

正则表达式知识

利用模式匹配,几行代码搞定

export default (str) => {
  var reg = /^(\w+)\1+$/
  return reg.test(str)
}

技术图片

重复的子字符串

标签:mic   alt   regex   script   return   tps   http   global   developer   

原文地址:https://www.cnblogs.com/ygjzs/p/12234271.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!