Help for this page
use Module::Find; # my @found = findsubmod('ABC'); #if you want all ABC::* modules my @found = grep { m/^ABC::plot_/ } findsubmod('ABC'); #all ABC::plot +_* modules