Hi I need a Simple Regular expression in PCRE format to match something like
(Child OR Children) AND toys
Hi I need a Simple Regular expression in PCRE format to match something like
(Child OR Children) AND toys
The following, or a slight derivative of the following, should work for you:
/(?:child|children) toys/i
Question is not very clear about how word toys
will appear after OR condition, but I think following should work for you:
/(?:^|\b)child(?:ren|)\b.*?(?<=\btoys\b)/i