I have a string that will always be dynamic, each time it returns one of the values below:
Return 1 -> Após o vencimento cobrar juros mora/dia de: R$ 3.44 ao dia Multa de: R$ 17,21 Valores expressos em Real (R$\f REMESSA CIP 263
Return 2 -> Após o vencimento cobrar juros mora/dia de: R$ 23.56 ao dia Multa de: R$ 117,80 Valores expressos em Real (R$\f REMESSA **PARCELA 01 / 02**
I need to get the value that comes after '(R$\f', that is, I need a regular expression that returns me:
REMESSA CIP 263` and REMESSA **PARCELA 01 / 02
My regular expression is this -> /\(R\$\\f (.*?)/i
but it is not working properly.
How can I solve this?
Double escape
$
&\f
and make the rest of line greedy like:Output: