I have a string
NSString *str = @"xyz/en/ABOUT/hello";
I need to remove all characters before the first slash.
My output should be like this :
"/en/ABOUT/hello"
but I cannot simply replace @"xyz"
, because the contents before the first slash are dynamic.