in reply to help in understanding a regex
with $string =~ m/[^/]+)$/;
using strict and warnings, you would get unmatched error [ in regex ...
Please note the usage of the "/" as the delimiter,
which you have to "escape" to use within the m// like so: $string =~ m/[^\/]+)$/;
Please check the subtitle m/PATTERN/msixpodualgc under Regexp-Quote-Like-Operators
|
|---|