字符串中的搜索函数子字符串

时间:2011-11-09 13:35:24

标签: iphone xcode uiwebview

  

可能重复:
  Finding a substring in a NSString object

类似于:如果在“http://test.ru/test/Lala/test.html”中是“/ test / Lala /”则执行操作

1 个答案:

答案 0 :(得分:1)

您可以检查您的子字符串:

NSRange range = [myString rangeOfString:mySubstring];

if (range.location != NSNotFound) {
    // do you action
}