Can someone tell me the regex pattern to match everything to the right of the last "/" in a string.
For example, str="red/white/blue";
I'd like to match "blue" because it is everything to the right of the last "/".
Many thanks!
|
Can someone tell me the regex pattern to match everything to the right of the last "/" in a string. For example, str="red/white/blue"; I'd like to match "blue" because it is everything to the right of the last "/". Many thanks! |
||||
|
In Perl:
In Javascript:
|
|||||
|
|
Use this Regex pattern: |
|||||
|
|
|
Should be
Means: Match a I use the |
|||
|
|
|
Something like this should work: What language are you using? End-of-string regex signifiers can vary in different languages. |
|||||
|
|
[^/]*$do? – Beta Jun 27 '11 at 15:06