indesign grep applescript find number above 14

Hi

Is there an expression that would find any number above 14 in the following expression?

WLG1-14\.\d{1}

many thanks

Shane

Hey Shane,

I have not tested this to the max, but it seems to be working.


\b[1-9]([5-9]|\d{2,})\b

(As written in BBEdit and not escaped for AppleScript.)