C++判断是不是包含子字符串函数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++判断是不是包含子字符串函数相关的知识,希望对你有一定的参考价值。
#include<iostream>
using namespace std;
int strlen(char *p1)
int i=0;
while(*p1++)
i++;
return i;
int find_substr(char* s1,char* s2)
int la;
int lb;
int i;
int j;
la=strlen(s1);
lb=strlen(s2);
for(i=0;(la-i)>=lb;i++)
if(s1[i]==s2[0])
for(j=0;j<=lb;j++)
if(s1[i+j]!=s2[j])
break;
if(j==lb)
return 1;
void main()
char s1[100];
char s2[100];
gets(s1);
gets(s2);
cout<<find_substr(s1,s2)<<endl;
if(find_substr(s1,s2)==1)
cout<<"有子字符串"<<endl;
else
cout<<"没有子字符串"<<endl;
做出来有错误函数哪里错了
c++ string.find函数
string (1) size_t find (const string& str, size_t pos = 0) const;
c-string (2) size_t find (const char* s, size_t pos = 0) const;
buffer (3) size_t find (const char* s, size_t pos, size_t n) const;
character (4) size_t find (char c, size_t pos = 0) const;
例子:
// string::find#include <iostream> // std::cout
#include <string> // std::string
int main ()
std::string str ("There are two needles in this haystack with needles.");
std::string str2 ("needle");
// different member versions of find in the same order as above:
std::size_t found = str.find(str2);
if (found!=std::string::npos)
std::cout << "first 'needle' found at: " << found << '\\n';
found=str.find("needles are small",found+1,6);
if (found!=std::string::npos)
std::cout << "second 'needle' found at: " << found << '\\n';
found=str.find("haystack");
if (found!=std::string::npos)
std::cout << "'haystack' also found at: " << found << '\\n';
found=str.find('.');
if (found!=std::string::npos)
std::cout << "Period found at: " << found << '\\n';
// let's replace the first needle:
str.replace(str.find(str2),str2.length(),"preposition");
std::cout << str << '\\n';
return 0;
结果:
first 'needle' found at: 14second 'needle' found at: 44
'haystack' also found at: 30
Period found at: 51
There are two prepositions in this haystack with needles.
s1未必一定比s2长,需要判断一下。
for(i=0;(la-i)>=lb;i++) 和 for(j=0;j<=lb;j++) 可能会导致越界,把=号去掉试一下。数组下标从0开始,不能等于有效元素个数。在这段程序里,应该是把结束的\\0也参与比较了。
int i=0;
while(*p1++)
i++;
return i;
里的 while(*p1++) 改成 while (*p1++!='\0')
如何判断 VARCHAR 变量是不是包含子字符串?
【中文标题】如何判断 VARCHAR 变量是不是包含子字符串?【英文标题】:How can I tell if a VARCHAR variable contains a substring?如何判断 VARCHAR 变量是否包含子字符串? 【发布时间】:2012-08-29 05:26:44 【问题描述】:我以为是CONTAINS
,但这对我不起作用。
我希望这样做:
IF CONTAINS(@stringVar, 'thisstring')
...
我必须运行一个select
或另一个,这取决于该变量是否包含字符串,我不知道如何让它工作。我看到的所有示例都使用包含中的列。
提前致谢。
【问题讨论】:
【参考方案1】:标准的SQL方式是使用like:
where @stringVar like '%thisstring%'
那是在查询语句中。您也可以在 TSQL 中执行此操作:
if @stringVar like '%thisstring%'
【讨论】:
...这让我很难过。前几天我试过了,它没有用。我必须输入一些错误的东西,因为它确实有效。我将其归结为在为期 3 天的周末之前的周五晚些时候做某事。据我所知,我可能已经把整个语句倒着打了。谢谢! @Yatrix 。 . .如果类似的方法似乎不起作用,您也可以使用 charindex('thisstring', @stringVar)。 @Asad 。 . .当然这会奏效。通配符%
匹配零个或多个字符。【参考方案2】:
您也可以使用CHARINDEX
,而不是LIKE
(正如其他评论者所建议的那样):
declare @full varchar(100) = 'abcdefg'
declare @find varchar(100) = 'cde'
if (charindex(@find, @full) > 0)
print 'exists'
【讨论】:
如果您要查找的是 LIKE 语句使用的通配符之一,那就太完美了【参考方案3】:CONTAINS
用于全文索引字段 - 如果不是,则使用 LIKE
【讨论】:
【参考方案4】: IF CHARINDEX('TextToSearch',@TextWhereISearch, 0) > 0 => TEXT EXISTS
IF PATINDEX('TextToSearch', @TextWhereISearch) > 0 => TEXT EXISTS
Additionally we can also use LIKE but I usually don't use LIKE.
【讨论】:
以上是关于C++判断是不是包含子字符串函数的主要内容,如果未能解决你的问题,请参考以下文章