मान लें कि मैं इस तरह एक स्ट्रिंग है:उद्देश्य-सी का उपयोग करके अंतरिक्ष द्वारा स्ट्रिंग को अलग कैसे करें?
hello world this may have lots of sp:ace or little space
मैं इस को यह स्ट्रिंग अलग करना चाहते हैं:
@"hello", @"world", @"this", @"may", @"have", @"lots", @"of", @"sp:ace", @"or", @"little", @"space"
धन्यवाद।
NSString* s = @"hello world this may have lots of space or little space";
NSMutableArray* ar = [NSMutableArray array];
[s enumerateSubstringsInRange:NSMakeRange(0, [s length]) options:NSStringEnumerationByWords usingBlock:^(NSString* word, NSRange wordRange, NSRange enclosingRange, BOOL* stop){
[ar addObject:word];
}];
आपका नुस्खा यहाँ http://stackoverflow.com/questions/758212/objective-c-strip-out-whitespace-from-nsstring/1427224#1427224 – EmptyStack
मैं नहीं देख सकते हैं, यही कारण है कि इस सवाल का है "असली सवाल नहीं" के रूप में मतदान किया। ओपी का कहना है कि क्या दिया जाता है और हासिल करने के लिए क्या आवश्यक है। – vikingosegundo