How to extract price value from this text

Hi,

Can you try the following expression?

System.Text.RegularExpressions.Regex.Match(TextVal,"(?<=AUD\s*)\d+(?=\.\()").Value

]

Regards,