regex pattern to match the end of a string
Use the $
metacharacter to match the end of a string.
In Perl, this looks like:
my $str = 'red/white/blue';
my($last_match) = $str =~ m/.*\/(.*)$/;
Written in JavaScript, this looks like:
var str = 'red/white/blue'.match(/.*\/(.*)$/);
Use this Regex pattern: /([^/]*)$
Should be
~/([^/]*)$~
Means: Match a /
and then everything, that is not a /
([^/]*
) until the end ($
, "end"-anchor).
I use the ~
as delimiter, because now I don't need to escape the forward-slash /
.
Something like this should work: /([^/]*)$
What language are you using? End-of-string regex signifiers can vary in different languages.
Use following pattern:
/([^/]+)$