Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は持っていNSMutableStringます。最後の文字が @":" であるか、最後の 2 文字が @":" であるかを確認する必要があります。
NSMutableString
どうやってするか?
hasSuffix:の方法を使用しNSStringます。
hasSuffix:
NSString
最後の文字を識別します:
NSString *lastChar = [yourstr substringFromIndex: [yourstr length] - 1];
最後の2文字を識別します:
NSString *lastTwoChar = [yourstr substringFromIndex: [yourstr length] - 2];