On Sun, Nov 20, 2011 at 11:33 PM, Gideon King <[email protected]> wrote: > Clearly there is some formatting error in the file but it is a rather large > file and would take a very long time to manually go through and find the > issue - is there some tool available that will tell me where to look in the > file for the error?
I don't know that grep understands UTF-16, but this seems like a problem that a well written regexp could solve. grep -Pv '^((\s*)|(/\*.*\*/)|(.*;))\s*$' MyFile.strings Adjust as needed. Maybe quickly convert the file to UTF-8 if grep chokes on UTF-16. _______________________________________________ Cocoa-dev mailing list ([email protected]) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to [email protected]
