I need to add the string @"d" after "id="
Example =
url = @"id=63488320543140151742289377"
needs to be
url = @"id=d63488320543140151742289377"
I have tried this:
NSRange range = [url rangeOfString:@"id="];
[url stringByReplacingCharactersInRange:range withString:@"id=d"];
but not work