Stuart Johnston wrote:
body L_MILLBILL /[mb]i(?:\|l|l\||\|\|)ions?/i
Feel free to use it, make suggestions or point out that I wasted my time writing a rule already available from SARE.
Stuart Johnston
How about (slightly easier to read) body L_MILLBILL /[mb]i[l|][l|]ions?/i or even body L_MILLBILL /[mb]i[l|]{2}ions?/i
I started with something similar to that but it will also match millions which we don't want.
Stuart Johnston