r4d 3.2.0-beta.1

Text oriented macro processor
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Split text into an array

# Arguments

- a_sep  : A separator string
- a_text : Text to split

# Demo

```
$split(_,I _have_ a_ many_ underbar_ in_ me)
===
I ,have, a, many, underbar, in, me
```

# Example

$assert(\\*a,b,c*\\,$split(/,a/b/c))