Help for this page
$_ = "This is a teeeext for testting"; /(?<char>.*)/ and print "'$+{char}' is matched pattern\n"; # This prints 'This is a teeeext for testting' is matched pattern
$_ = "This is a teeeext for testting"; /(?<char>e*)/ and print "'$+{char}' is matched pattern\n"; # This prints '' is matched pattern