I need assistance with parsing strings that have a specific format. The string looks like this:
Size: 1243 MB Amount: 2,239 Value: 1,569 Info: 1Z31LZ
Currently, I split the string on :
and replace some names to extract the values I need. However, I believe there must be a more efficient way to achieve this using an expression or function. Ideally, I would like the extracted values to be stored in an array like this
['1243','MB','2,239','1,569','1Z31LZ']
If anyone can provide guidance on how to do this, I would greatly appreciate it!