gpt4 book ai didi

c++ - 从 std::string 中提取信息

转载 作者:行者123 更新时间:2023-11-30 03:16:22 25 4
gpt4 key购买 nike

太多与字符串相关的查询,但仍然存在一些疑问,因为每个字符串都不同,每个要求也不同。

我有一个这种形式的字符串:Random1A:Random1B::String1 Random2A:Random2B::String2 ... RandomNA:RandomNB::StringN

我想以这种形式取回一个字符串:String1 String2 ... StringN

简而言之,输入字符串看起来像 A:B::Val1 P:Q::Val2,而 o/p 结果字符串看起来像 "Val1 Val2”。

PS:RandomsStrings 是小(可变)长度的字母数字字符串。

std::string GetCoreStr ( std::string inputStr, int & vSeqLen )
{
std::string seqStr;
std::string strNew;
seqStr = inputStr;
size_t firstFind = 0;
while ( !seqStr.empty() )
{
firstFind = inputStr.find("::");
size_t lastFind = (inputStr.find(" ") < inputStr.length())? inputStr.find(" ") : inputStr.length();
strNew += inputStr.substr(firstFind+2, lastFind-firstFind-1);
vSeqStr = inputStr.erase( 0, lastFind+1 );
}
vSeqLen = strNew.length();
return strNew;
}

我想取回单个字符串 String1 String2 ... StringN

我的代码有效,我得到了我选择的结果,但这不是最佳形式。我需要提高代码质量方面的帮助。

我最终采用了 C 方式。

std::string GetCoreStr ( const std::string & inputStr )
{
std::string strNew;
for ( int i = 0; i < inputStr.length(); ++i )
{
if ( inputStr[i] == ':' && inputStr[i + 1] == ':' )
{
i += 2;
while ( ( inputStr[i] != ' ' && inputStr[i] != '\0' ) )
{
strNew += inputStr[i++];
}
if ( inputStr[i] == ' ' )
{
strNew += ' ';
}
}
}
return strNew;
}

最佳答案

I am having trouble deciding on how to adjust the offset. [...]

std::string getCoreString(std::string const& input)
{
std::string result;
// optional: avoid reallocations:
result.reserve(input.length());
// (we likely reserved too much – if you have some reliable hint how many
// input parts we have, you might subtract appropriate number)

size_t end = 0;
do
{
size_t begin = input.find("::", end);
// added check: double colon not found at all...
if(begin == std::string::npos)
break;
// single character variant is more efficient, if you need to find just such one:
end = std::min(input.find(' ', begin) + 1, input.length());
result.append(input.begin() + begin + 2, input.begin() + end);
}
while(end < input.length());
return result;
}

旁注:您不需要额外的“长度”输出参数;这是多余的,因为返回的字符串包含相同的值...

关于c++ - 从 std::string 中提取信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56390115/

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