字符串
最后更新于:2022-04-02 03:12:32
[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"
```
';