What is more efficient from a processing perspective, having a single large rule or multiple smaller rules? What is the ideal size for a rule?
Im simplest terms:
/one|t(?:wo|hree)|four/
Or
/one/
/t(?:wo|hree)/
/four/
What is more efficient from a processing perspective, having a single large rule or multiple smaller rules? What is the ideal size for a rule?
Im simplest terms:
/one|t(?:wo|hree)|four/
Or
/one/
/t(?:wo|hree)/
/four/