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 6348141
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T21:21:55+00:00 2026-05-24T21:21:55+00:00

I use NSComparisonResult for searching through my array, but when I use NSDiacriticInsensitiveSearch, it

  • 0

I use NSComparisonResult for searching through my array, but when I use NSDiacriticInsensitiveSearch, it cant find immediately Scandinavian alphabets like å æ ø, but it can find such alphabets as á etc. When I remove NSDiacriticInsensitiveSearch in options: , then my search bar can find å æ ø immediately, but ignore à and such.

Is there any solution to this?

EDIT 15 august:
I believe using NSScanner (though I have no experience with this) in if logic for detecting å æ ø in searchstring, if they exist, then no nsdiactricinsensitivesearch. If no å æ ø in searchstring, then include nsdiactricinsensitivesearch in nscomparisonresult. I will try to implement this soon and give feedback if this works or not.


My codes:

NSComparisonResult result;
         NSString *setext = searchText;
         NSScanner *scanner = [NSScanner scannerWithString:setext];
         NSString *a = @"å";
         while ([scanner isAtEnd] == NO)
         {
              if ( [scanner scanString:a intoString:NULL])
              {
             [scanner scanUpToString:a intoString: NULL];
             result = [mystr compare:searchText options:(NSCaseInsensitiveSearch) 
                        range:NSMakeRange(0, [searchText length])];              

              }
              else 
              {
              result = [mystr compare:searchText options:(NSCaseInsensitiveSearch|NSDiacriticInsensitiveSearch) 
                range:NSMakeRange(0, [searchText length])];
        }

    }

But it is a bit slower than my modification of JohnBrighton´s solution:

        NSComparisonResult result;
        NSString *string = searchText;
        NSRange range = [string rangeOfString:@"æ"];
        NSRange range2 = [string rangeOfString:@"ø"];
        NSRange range3 = [string rangeOfString:@"å"];
        if (range.location != NSNotFound || range2.location != NSNotFound || range3.location != NSNotFound ) 

//if ((range.location != NSNotFound)  | (range2.location != NSNotFound ) | (range3.location != NSNotFound ) ) {


{
            result = [mystr compare:searchText options:(NSCaseInsensitiveSearch) 
                              range:NSMakeRange(0, [searchText length])];       
        }   
        else {
            result = [mystr compare:searchText options:(NSCaseInsensitiveSearch|NSDiacriticInsensitiveSearch) 
                              range:NSMakeRange(0, [searchText length])];
        }

Does anyone know whats the difference between || and | in if logic?

  • 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-24T21:21:57+00:00Added an answer on May 24, 2026 at 9:21 pm

    Does anyone know whats the difference between || and | in if logic?

    You can’t use “|” in that case, as it’s a bitwise OR operator. “||” is a boolean logical operator, which doesn’t work with bits as the bitwise OR.

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

Sidebar

Related Questions

use this website a lot but first time posting. My program creates a number
use warnings; use Test::More; use File::Find::Rule; use Test::File::Find::Rule; my $rule = File::Find::Rule->file->name('*.pl')->not_grep(qr/^\s*use\s+strict;/m, sub {
I'm trying to sort an array of NSStrings but i'm unsure how to actually
Use Html element SELECT in aspx page like: <SELECT id=MySelection name=MySelection runat=server DataValueField=ID DataTextField=Name></SELECT>
use grep command to find txt files containing telephone number. telephone number format could
Use: The user searches for a partial postcode such as 'RG20' which should then
Use trap to capture signals like this: i=-1;while((++i<33)); do trap echo $i >> log.txt
Use case: we have some project meta-data files which we want tracked, but are
use strict; use warnings; my %hash = (no1=>1, no2=>2, ); my @array = %hash;
Use OPENXML to get dt element in MSSQL 2005. How can I get xmlns:dt

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.