Help with regex to extract number following a particular word

Hello
I have a string like below , I a not sure if it would always start with “Zestimate®”.
but all i want is the number that follows after the “Zestimate®” which is 61,700
also it might be 61,700.58, so decimal is also a consideration.
Also case insensitive

Thanks a lot

Zestimate®$61,700Estimated sales range: $46,000 - $80,000 Zestimate historyTable viewThis home$61.7KToday20142016201820202022$20K$40K$60K$80Kype or paste code here
1 Like

Hey @MasterOfLogic

Kindly try the below.

(?<=Zestimate®)\$\d+(,|\d)*\.*\d*

Thanks
#nK

2 Likes

many thanks

1 Like

Cool buddy :hugs::+1:

1 Like

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