Regex to find the last value

Invoice Total (including VAT) -GBP- 234.56(8989)

From the above string, i want to extract 234.56

can any one suggest regex?

A quick shot:
grafik

(\d+.\d+)(?=()

Use this if you wish. It checks for exactly one . between digits.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.