I have a field that looks like this :
------->Total cash dispensed: 40000 MGA
I want to get only the "MGA" using regex but without using split
regex = r"Total cash dispensed:\s*([^ 0-9]*)"
The code I used to get anything that's not number or white space does not work, How do I fix this?