Try (?<=\d\.)\d+ which should select all digits after the decimal point. If you only want the digits from the thousandths plcae and beyond, use (?<=\d\.\d\d)\d+
↧
Try (?<=\d\.)\d+ which should select all digits after the decimal point. If you only want the digits from the thousandths plcae and beyond, use (?<=\d\.\d\d)\d+