I would like to ask for your help...
I have this string where I have to get the 4.75. I've tried many regex expression but I could not get it to work and been through browsing lots of examples as well.
Loan Amount Interest Rate
$336,550 4.75 %
So far, below is my current expression
1. (?<=Interest Rate\s*\n*)([^\s]+).+(?=%)
I'm getting the $336,550 4.75
2. ([^\s]+).(?=%)
Resulted into multiple output. In my entire text, which I can't share, there are also other data that is in %.
I am only after the 4.75. I know I can just select the first match via code (i guess) but for now it is not an option.
Thanks in advance!
I've tried different regex expression