> > 
> > product_name_definition => {
> > type => 'manual',
> > value => '(Fantasy.+?)/'
> > },
> > 
> 
> this seem to catch only e.g. FantasyM, leaving the FG out (according to 
> http://regextester.com/). anyway, i got the same error, only with 
> '(Fantasy.+?)/' in the error message between the apostrophes.
> 
> how about this expression? 'Fantasy[\s\.\w]+'

This won't work since it won't set the $1 unamed variable. The following
is less restrictive:

value => '(.+?)/'


Attachment: signature.asc
Description: This is a digitally signed message part

_______________________________________________
scmbug-users mailing list
[email protected]
http://lists.mkgnu.net/cgi-bin/mailman/listinfo/scmbug-users

Reply via email to