String.prototype.matchAll() String.prototype.matchAll() 如果一个正则表达式在字符串里面有多个匹配,现在一般使用g 修饰符或y 修饰符,在循环里面逐一取出。 var regex = /t(e)(st(\d?))/ g ; var string = 'test1test2tes...
Space Replacement Question Problem Statement Notice 题解 C++ Java 源码分析 复杂度分析 Space Replacement Tags: String, Cracking The Coding Interview, Easy Question lintcode: Sp...