Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
$` - Returns everything before the match
$' - Returns everything after the match
$& - Returns only the match
$+ - Returns the last paranthetical match
my @names = qw{
PC-blah1.jpg
GBA-test.jpg
};
foreach ( @names ) {
/[^-]*-([^.]+)\./ && print "$_ -> $1\n";
}
[^-]*
-
(
[^.]+
)
\.