标签: c string search
C中是否有任何函数在字符串中搜索字符串并返回0或1。
假设字符串1为"I love the whole world",我想搜索"love"然后是否有任何函数在未找到时正确返回0,如果找到则返回1.
"I love the whole world"
"love"
答案 0 :(得分:2)
strchr()搜索给定字符串中的字符。
strchr()
但是,您希望在love中找到I love the whole world,以便在另一个字符串中搜索字符串。以此为strstr()。
love
I love the whole world
strstr()
虽然这两个函数都不会返回0或1,但我相信你能够以某种方式包装它们。