I tried to use a regular expression as a meta info value: +component
sales|purchasing

With this I intend to run all the stories which are either declared as
"@component sales" or "@component purchasing".

But it only includes "sales" but not "purchasing".

You can reproduce it with this code:

String filter = "+component sales|purchasing";

MetaFilter mf = *new* MetaFilter(filter);

DefaultMetaMatcher dmm = mf.*new* DefaultMetaMatcher();

dmm.parse(filter);

System.*out*.println(dmm.include());

Wouldn't it be nice to be able to use regular expressions as meta info
values? Or can I do, what I intended to do, in a different way?

Reply via email to