Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to compare two strings using the iOS NSDiacriticInsensitiveSearch comparison option, but I cannot find it in the MonoTouch libray. Is it missing?

Is there any .NET alternative that I can use?

The NSDiacriticInsensitiveSearch comparison option is very importand to get good search results on alphabets with diacritics like Greek and Scandinavian, without having the user to type the diacritics.

share|improve this question

1 Answer

A quick look for NSDiacriticInsensitiveSearch and NSStringCompareOptions do not show them as available in MonoTouch.

However you have culture-aware string comparison available in .NET but I do not know of a general way to compare string without considering diacritic characters. The best approach would be to remove such characters before doing an ordinal comparison (see blog entry).

If you're porting code, or really needs NSDiacriticInsensitiveSearch support, then you can fill a bug report (Enhancement) at http://bugzilla.xamarin.com and someone will add the missing bindings in a future release of MonoTouch.

UPDATE: MonoTouch 5.2 will support NSString.Compare including its options like NSDiacriticInsensitiveSearch.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.