If 43 is after a 999.99% reduction, then it was
If 43 is after a <mark>999.99%</mark> reduction, then it was
var re = new RegExp('(\\d+\.?\\d+%)', 'g');
"If 43 is after a 999.99% reduction, then it was"
.replace( re, '<mark>$1</mark>')
/*
If 43 is after a <mark>999.99%</mark> reduction, then it was
*/