2010-07-13 80 views
2

我有一個字符串 「AA - 的人的標題」「 - 」Objective-C的字符串操作

如何我之前得到這個角色?

輸出應該是「AA」

此外,如果輸入沒有一個「 - 」,那麼輸出應該是零

回答

5
NSInteger hyphenStart = [theString rangeOfString:@" - "].location; 
if(hyphenStart == NSNotFound) 
    return nil; 
return [theString substringToIndex:hyphenStart]; 
+0

這會給我「AA」還是「AA」? – Yolanda 2010-07-13 18:05:46

+0

它會給你「AA」 – 2010-07-13 18:11:28

+0

好thx。如何修剪obj-c中的字符串? – Yolanda 2010-07-13 18:26:09