How to extract price value from this text

Hello @vinjam_likitha
Try Regex method

System.Text.RegularExpressions.Regex.Match(YourString,"(?<=AUD).*(?=\()").ToString.Trim

If need as integer variable try this

Cint(System.Text.RegularExpressions.Regex.Match(YourString,"(?<=AUD).*(?=\()").ToString.Trim)

image