I want to extract all the Strings from my codebase and put in an excel sheet. What is the best way to do that? And how can I do that?
To add on it. I am able to search all the strings in my project using the following expression:
@"(any)"
where (any) is the pattern available in Xcode search. I am able to search all the strings. I want to extract all those and put it in a list/excel sheet. How should I do that?
===EDIT===
2nd Part of my question. I have a string @"abc", How can I replace it to NSLocalizedString(@"abc", @"abc", nil) using Find/Replace in Xcode?