📌  相关文章
📜  如何检查字符串是否完全由 JavaScript 中的相同子字符串组成?

📅  最后修改于: 2022-05-13 01:56:53.875000             🧑  作者: Mango

如何检查字符串是否完全由 JavaScript 中的相同子字符串组成?

给定一个字符串,任务是确定该字符串是否由相同的子字符串组成。

方法:

  • 将字符串初始化为变量。
  • 使用 test() 方法测试字符串中的模式。
  • 如果找到匹配项,test() 方法返回 true,否则返回 false。

示例 1:此示例检查由相同子字符串组成的字符串geeksgeeksgeeks ,因此它返回 True。

 
 
     
         
            How to check a string is entirely
            made of same substring ?
        
     
      
     
  
        

              GeeksForGeeks          

             

              

                                       

        

                                               

输出:

  • 在点击按钮之前:
  • 点击按钮后:

示例 2:此示例检查不是由相同子字符串组成的字符串geeksgeekgeeks ,因此它返回 False。

 
 
     
         
            How to check a string is entirely
            made of same substring ?
        
     
      
     
  
        

              GeeksForGeeks          

             

              

                                       

        

                                               

输出:

  • 在点击按钮之前:
  • 点击按钮后: