In Notepad++, I'm seeking assistance to bookmark lines that contain percentage values below a certain threshold. For instance, how can I bookmark all lines featuring percentage values lower than 98.5%?
I tried following regular expressions but I failed:
^(?=.*\b(?:\d{1,2}(?:\.\d+)?|98(?:\.[0-4]\d*)?)%).*$
^(?=.*\b\d{1,2}\.\d{1,}%.*$).*$
^(?=.*\b\d{1,2}(?:\.\d+)?%.*$)(?!.*\b98\.5%.*$).*$
^.*\b(?:98(?:\.[0-4]\d*)?|(?<!\d)9[0-7](?:\.\d*)?)%\b.*$
where is my regex problem?