如何檢查一個字符串是否包含特定的字符或單詞。 在我的情況下,我有一個字符串「紅色手冊」。在這裏,我必須檢查我的字符串中的「red ma」。 我嘗試了使用範圍的字符串方法,但它不滿足條件。如何檢查字符串是否包含字符?
這裏是我的代碼
NSString *string = @"red manual";
NSRange newlineRange = [string rangeOfString:@"red ma"];
if(newlineRange.location != NSNotFound)
{
NSLog(@"found");
}
else
{
NSLog(@"not found");
}
可能重複? http://stackoverflow.com/questions/2753956/how-do-i-check-if-a-string-contains-another-string-in-objective-c –
如果rangeOfString不起作用,則可以使用正則表達式;) –
歡迎來到stackoverflow。請注意,僅僅因爲您使用'xcode IDE'並不意味着您應該使用'xcode'標籤。 'xcode'標籤保留用於與'xcode IDE'本身相關的問題,而不是您在'xcode IDE'中編寫代碼的問題。當問一個問題,如果你認爲你需要使用'xcode'標籤時,你可能根本不應該使用它。 – Popeye