ThinkSSL🔒 一键申购 5分钟快速签发 30天无理由退款 购买更放心 广告
[TOC] ## 示例 ``` R.split('.')('a.b.c.xyz.d') // ['a', 'b', 'c', 'xyz', 'd'] R.test(/^x/)('xyz') // true R.test(/^y/)('xyz') // false R.match(/([a-z]a)/g)('bananas') // ['ba', 'na', 'na'] R.match(/a/)('b') // [] R.match(/a/)(null) // TypeError: null does not have a method named "match" ```