题解 | #获取指定字符串#
获取指定字符串
http://www.nowcoder.com/practice/4ec56ad04a9a4402a01e50a390a8060a
function captureThreeNumbers(str) { // 方法1 // if (/\d{3}/.exec(str)) { // return /\d{3}/.exec(str)[0] // } // return false // 方法二 return str.match(/\d{3}/) ? str.match(/\d{3}/)[0] : false }