gpt4 book ai didi

c++ - 在 CString 中查找以空格分隔的单词的最佳方法

转载 作者:太空狗 更新时间:2023-10-29 23:38:24 54 4
gpt4 key购买 nike

示例:“从 x = 1 的某处选择 *

我想找到以空格分隔的“where”,而不是“somewhere”中的“where”。在示例中,“where”由空格分隔,但也可以是回车符、制表符等。

注意:我知道正则表达式会很容易做到(正则表达式等价物是“\bwhere\b”),但我不想将正则表达式库添加到我的项目中做这个。

最佳答案

如果您想使用字符串操作的纯 MFC 方法,那么这应该可行:

CString strSql = _T("select * from somewhere where x = 1");

int nTokenPos = 0;
CString strToken = strSql.Tokenize(_T(" \r\n\t"), nTokenPos);

while (!strToken.IsEmpty())
{
if (strToken.Trim().CompareNoCase(_T("where")) == 0)
return TRUE; // found
strToken = strSql.Tokenize(_T(" \r\n\t"), nTokenPos);
}

return FALSE; // not found

关于c++ - 在 CString 中查找以空格分隔的单词的最佳方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1177276/

54 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com