Hi all, I am trying to find a regular expression that does the following:-
Sample Strings:
1. "/somefolder"
2. "/specific_folder/aaaa"
3. "/myfolder/bbbb"
I would like to match everything after the first "/" for all strings except
#2. i.e. for all cases except when it starts with "specific_folder". Any
ideas? Right now what I have for my regular expression is "/(.*)". But that
captures everything.
TIA!