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

  • SEARCH
  • Home
  • 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 7812829
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T04:38:30+00:00 2026-06-02T04:38:30+00:00

I have tokenized an NSString into an NSMutable Array. I can then use an

  • 0

I have tokenized an NSString into an NSMutable Array. I can then use an NSSortDescriptor to sort that array by the length of its strings. Then I can perform methods on certain words starting from the longest.

This is where my problem surfaces. I now need to restore the original sort order of the array so that I can run the array back into an edited string.

  • 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-06-02T04:38:31+00:00Added an answer on June 2, 2026 at 4:38 am

    My answer is essentially like Steve’s except that I’d do it the other way around — keep the original array, create a sorted copy of that, step through the sorted copy doing your processing and then throw it away. So, e.g.

    NSArray *yourOriginalArray = ...whatever...;
    
    // do processing
    for(id object in [yourOriginalArray sortedArrayUsing<whatever means>])
    {
        // if you're doing processing that doesn't change the identity of
        // the object then there's no need to worry about this, but supposing
        // you want to adjust the identity (eg, the source array is full of
        // immutable objects and you want to replace them) then...
    
        NSUInteger originalIndex = [yourOriginalArray indexOfObject:object];
    
        id replacementObject = [self mutatedFormOf:object];
        [yourOriginalArray replaceObjectAtIndex:originalIndex
                         withObject:replacementObject];
        // of course, this is only if yourOriginalArray is mutable
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have tokenized names (strings), with the tokens separated by underscores, which will always
I have a table called Token in my database that represents texts tokenized. Each
Here's the deal. Is there a way to have strings tokenized in a line
I have a field that I am indexing with Lucene like so: @Field(name=hungerState, index=Index.TOKENIZED,
I have a list of strings that are all early modern English words ending
I have an app that I'm attempting to integrate hibernate search into. I'm using
I have around 100 rows of text that I want to tokenize, which are
Have a SomeLib.pro file that contains: CONFIG += debug TEMPLATE = lib TARGET =
Have a matrix report now that has Position, Hours and Wages for a location
I have a value I am trying to index that looks like this: Test

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.