How to remove the last n characters from an NSString

- by

We can use the substringToIndex method for this, using the length of our original string minus 1:

        NSString *something = @"12345";
        something = [something substringToIndex:(something.length - 1)];
        
        // something is now 1234


If you enjoy my content, please consider supporting me on Ko-fi. In return you can browse this whole site without any pesky ads! More details here.

Leave a Comment!

This site uses Akismet to reduce spam. Learn how your comment data is processed.