js 字符串匹配
Posted F
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 字符串匹配相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>W3Cschool教程(w3cschool.cn)</title> </head> <body> <script> var str = "Visit W3Cschool"; var patt1 = /w3cschool/i; document.write(str.match(patt1)); </script> </body> </html>
以上是关于js 字符串匹配的主要内容,如果未能解决你的问题,请参考以下文章