Mainly used for variable data processing
1. Text Extraction
Extract text from a variable, filter it according to rules, and then save it to a new variable.

2. Number Extraction
Extract numbers from a string variable, convert them according to the rules, and save them into a new variable. Only the units K/k, W/w, M/m, B/b are supported.

| Input Example | Output |
|---|---|
| 3242 | 3242 |
| 3,242 | 3242 |
| 3.21 | 3.21 |
| 1.2K | 1200 |
| 1.2K | 1200 |
| 2M views | 2000000 |
| .12o1 | 12 |