Need to Extract Amount in below text

FacilityIn-Network: (Other than Tier 2 & 3) - 100% of the allowed amount subject to a $250.00 per day copay for days 1 through 5 (applies to OOP), preadmission certification is required.In-Network: (Tier 2 & 3) - 100% of the allowed amount subject to a $500.00 per day copay for days 1 through 5 (applies to OOP), preadmission certification is required.Out-of-Network: (In-State) - Non-CoveredOut-of-Network: (All Else) - 80% of the allowed amount (coinsurance does not apply to OOP) subject to a $800 per admission deductible (does not apply to OOP),

In above text i need to extract amount “$250.00”
Keyword is In-Network: (Other than Tier 2 & 3)

Please give me regex expression

Hi @Vicky_K

Use this pattern to achieve the $\d+.\d{2}

Thanks!!!

Hi,

How about the following?

System.Text.RegularExpressions.Regex.Match(yourString,"(?<=In-Network: \(Other than Tier 2 & 3\)\P{Sc}+)\p{Sc}[.,\d]+").Value

OR

System.Text.RegularExpressions.Regex.Match(yourString,"(?<=In-Network: \(Other than Tier 2 & 3\)[^$]+)\$[.,\d]+").Value

Regards,