1

我想检查一个字符串是否存在于另一个字符串中,然后采取适当的措施。做这个的最好方式是什么?

例如; 如果字符串 'europe' 出现在 'europeisthebest' 中,则执行一些操作。

if ( isIn('europe', 'europeisthebest') == true){
  //do something
}

十分感谢!我感谢您的所有回答和花时间提供帮助。

4

2 回答 2

7

您正在寻找strstr()(区分大小写)、stristr()(不区分大小写)或strpos()

if (stristr('europeisthebest', 'europe')){
  // do something
}
于 2012-07-25T01:13:24.957 回答
0

如果您想知道子字符串在字符串中的位置,也可以使用函数 strpos()

于 2012-07-25T01:16:33.147 回答