I am working with cocoa on an iPhone and I am looking for some method like:
NSString *s = @"Hello"; [s isStringStartsWithUpperCaseCharacter] -(BOOL) isStringStartsWithUpperCaseCharacter;
The first letter of the string may not be an ASCII letter, for example: Γ , Γ , Γ ...
Is there any way that can help me?
I saw in the documentation that there are some methods for converting a string to upper and lower case, but there are no methods to ask if the string is lowercase or uppercase .
source share