Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6907651
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T08:27:43+00:00 2026-05-27T08:27:43+00:00

Is there a function in the IOS Api that is like substringFromIndex excepts uses

  • 0

Is there a function in the IOS Api that is like substringFromIndex excepts uses a lot less memory (I am using VERY VERY large strings). If I would have to make that function how would I go about doing that?

Thanks in advance

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T08:27:44+00:00Added an answer on May 27, 2026 at 8:27 am

    Yes, but it’s kind of roundabout and potentially dangerous

    Here’s what you do:

    NSString *veryLargeString = ...;
    NSUInteger startingIndex = ...;
    NSData *veryLargeStringData = [veryLargeString dataUsingEncoding:NSUTF8StringEncoding];
    
    const void *bytes = [veryLargeStringData bytes];
    const void *subBytes = bytes + startingIndex;
    NSUInteger subLength = [veryLargeStringData length] - startingIndex;
    
    NSString *substring = [[NSString alloc] initWithBytesNoCopy:subBytes length:subLength encoding:NSUTF8StringEncoding freeWhenDone:NO];
    

    What is this doing:

    1. It’s getting the very large string as a series of bytes; I’m pretty sure this doesn’t actually copy the bytes, but be sure to use Instruments to verify. If you can get this super long string as an NSData to begin with instead of an NSString, then you can be much more confident that nothing’s going to get copied.
    2. Get the actual byte buffer from the NSData
    3. Index into the byte buffer by using some pointer arithmetic
    4. Figure out how much of the buffer is left
    5. Create a new NSString with the byte buffer, but telling it to NOT copy the bytes, and to NOT free the buffer when the NSString is deallocated

    So, why is this dangerous? Basically, if the byte buffer disappears from underneath the NSStrings, Bad Things™ can happen (likely crashing).

    However, if you’re smart about it, this will allow you to create substrings without copying the underlying bytes.


    Devious thought:

    You could make veryLargeString a retained associated object on substring (i.e., basically make substring an owner of veryLargeString). This would ensure that veryLargeString lives at least as long as substring does. You’d do that like this:

    static char ParentStringKey;
    
    objc_setAssociatedObject(substring, &ParentStringKey, veryLargeString, OBJC_ASSOCIATION_RETAIN);
    

    When substring is deallocated, it’ll also automatically release its retain on veryLargeString.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a function like document.getElementById(FirstDiv).clear() ?
Is there any function that converts an escaped Url string to its unescaped form?
Is there a function in Common Lisp that takes a string as an argument
Is there any function like php's mb_convert_encoding which can convert an encoding to another?
Is there a function, that clears last line in command prompt? I dont mean
I find the Post notification and delegate function are very useful in iOS. Once
I'm still very new to iOS developing. In fact, if there is a super
I know that there are memory leaks that are no big deal or are
I have a C library that I'm using from within an iOS Objective-C program.
I have the following function to post to Facebook using the latest iOS Facebook

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.