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
Get a substring after a pattern. This is not a regex but an exact match finder.

# Arguments

- a_pattern : A pattern to find
- a_content : Content to get a sub string

# Demo

```
$after(goal : ,My goal : Complete a project)
===
Complete a project
```

# Example

$assert(world,$after($space(),Hello world))