Hello,
I have a scenario where I need extract amounts from a string. This could be achieved either by using regex function or pulling amounts from the end of the strings.
Can someone suggest a dynamic solution to this problem?
| Field | Output |
| 0,AAA None]||||ABB_BALANCE|90 | 90 |
| 0,AAA None]||||ABB_BALANCE|0 | 0 |
| 0,AAA None]||||ABB_BALANCE|0 | 0 |
| 0,AAA None]||||ABB_BALANCE|80.30 | 80.3 |
| 0,AAA None]||||ABB_BALANCE|0 | 0 |
| 0,AAA None]||||ABB_BALANCE|0 | 0 |
| 0,AAA None]||||ABB_BALANCE|0 | 0 |
| 0,AAA None]||||ABB_BALANCE|9999 | 9999 |
| 0,AAA None]||||ABB_BALANCE|0 | 0 |
| 1463.49,AAA None]||||ABB_BALANCE|1463.49 | 1463.49 |
| 1463.49,AAA None]||||ABB_BALANCE|1463.49 | 1463.49 |
Thank you