DEV Community

Discussion on: Browse CPAN modules per namespaces

Collapse
 
grinnz profile image
Dan Book

The common way to pass a regular expression to a function is with the qr operator, so it probably expects something like package => qr/^XML::/.

Collapse
 
thibaultduponchelle profile image
Tib

Thank you a lot, it works like a charm and I updated the post with:

my @result = $index->search_packages( { package => qr/^XML::/ });
Enter fullscreen mode Exit fullscreen mode