I have this string :
"AED 149: "Instant Redemption A 10AED""
How can I have a regex that will get me this text ?
"Instant Redemption A 10AED"
currently I have this
var regEx = new RegExp(currency + ' ' + '[\\d,.]+: (.*)', "ig");
in which currency value is AED now.
but this return for me "AED 149: "Instant Redemption A 10AED"" as a match
Can I modify my regex to have this result only : "Instant Redemption A 10AED" ?
"Instant Redemption A 10AED"