Yep, I think Kadiravan has the right solution.
If the row titles are consistent, I’d just split on "FCY Conversion(Only GST amount being charged) by using this - How to Split a String - #8 by vikas_reddy_Vicky
And then use a matches activity (https://activities.uipath.com/docs/matches) with regex to pull out the three values. Something like this (([\d+,]+)(.\d+)?\s\w{3}|(\w+.?)\s?[\d+,]+(.?\d+))
from here python - I want to match money amount with regex for indian currency without commas - Stack Overflow