摘要: String类🥱 字符串模式匹配 replace var text = "cat, bat, sat, fat"; var pattern = /.at/; //下面与pattern.exec(text)相同 var matches = text.match(pattern); alert(mat 阅读全文
posted @ 2021-09-16 17:01 _Salvatore 阅读(103) 评论(0) 推荐(0)