• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Not understanding NSString's compare:options:range:locale: method
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Not understanding NSString's compare:options:range:locale: method


  • Subject: Re: Not understanding NSString's compare:options:range:locale: method
  • From: Aki Inoue <email@hidden>
  • Date: Fri, 8 Oct 2010 11:45:48 -0700

Hi Derek,

The range argument only applies to the receiver of the message.
So, with your first example, you're comparing @"a" against @"ac".

Aki

On 2010/10/05, at 2:48, Derek Huby wrote:

> This method isn't doing what I expect it to do (which probably means that I'm expecting the wrong thing.)
>
> //=====================================================
> NSRange range = NSMakeRange(0,1);
>
> NSString *s1 = @"ab";
> NSString *s2 = @"ac";
>
> //Just compare the first character
> NSComparisonResult result1 = [s1 compare:s2 options:NSLiteralSearch range:range locale:[NSLocale currentLocale]];
> NSLog(@"Result 1 = %d", result1);
>
> //Now swap the order of the strings
> NSComparisonResult result2 = [s2 compare:s1 options:NSLiteralSearch range:range locale:[NSLocale currentLocale]];
> NSLog(@"Result 2 = %d", result2);
> //=====================================================
>
> I get a result of -1 both times. Since we are only comparing the first character, shouldn't the result be 0?
>
> Thanks for any illumination,
>
> Derek Huby
>
>
> _______________________________________________
>
> Cocoa-dev mailing list (email@hidden)
>
> 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:
>
> This email sent to email@hidden

_______________________________________________

Cocoa-dev mailing list (email@hidden)

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:

This email sent to email@hidden

References: 
 >Not understanding NSString's compare:options:range:locale: method (From: Derek Huby <email@hidden>)

  • Prev by Date: Re: Not understanding NSString's compare:options:range:locale: method
  • Next by Date: Re: Not understanding NSString's compare:options:range:locale: method
  • Previous by thread: Re: Not understanding NSString's compare:options:range:locale: method
  • Next by thread: Re: Not understanding NSString's compare:options:range:locale: method
  • Index(es):
    • Date
    • Thread