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.
我想检查一个字符串是否存在于另一个字符串中,然后采取适当的措施。做这个的最好方式是什么?
例如; 如果字符串 'europe' 出现在 'europeisthebest' 中,则执行一些操作。
if ( isIn('europe', 'europeisthebest') == true){ //do something }
十分感谢!我感谢您的所有回答和花时间提供帮助。
您正在寻找strstr()(区分大小写)、stristr()(不区分大小写)或strpos()
strstr()
stristr()
strpos()
if (stristr('europeisthebest', 'europe')){ // do something }
如果您想知道子字符串在字符串中的位置,也可以使用函数 strpos()