2.修饰符.html 505 B

123456789101112131415161718192021
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. </head>
  8. <body>
  9. <script>
  10. // const reg = /a/i;
  11. // console.log(reg.test("abc"))
  12. // console.log(reg.test('a'))
  13. // console.log(reg.test("Abc"))
  14. const reg = /react/gi;
  15. const str = '学习react,React好,REACT棒';
  16. console.log(str.replace(reg,'vue'))
  17. </script>
  18. </body>
  19. </html>