Can someone help me to match the pattern? I need to get numbers out of this string
TASK REMAINING TOTAL changed from [0.0] to [1.5], TASK ESTIMATE TOTAL changed from [0.0] to [5.0], PLAN ESTIMATE added [5.0 Points]
I need to get exactly the numbers after TASK ESTIMATE TOTAL. So, it should be in regex, but not in the match.
This regex would get the numbers for you:
Update:
The first number will be stored in group1 and the second in group2.
Output:
See it in action here: http://codepad.org/mYARv7Zr