I want to detect two versions of the same thing, plural and now
eg:
"piece" and "pieces" should both return a match.
var re_1 = new RegExp("how many piece", "i");
or
var re_1 = new RegExp("how many pieces", "i");
How do I form a RegExp expression in Javascript to detect both singular and plural in the same pattern?