我很难删除第一个括号“(”和最后一个括号“(”之间的所有字符,包括它们。这是我用来使其工作的测试程序,但没有成功......
#include <iostream>
#include <string>
using namespace std;
int main()
{
string str = "( 1221 ( 0 0 0 ) (1224.478541112155452 (1.32544e-7 0 0 ) ) )";
int count = 0;
for (std::string::size_type i = 0; i < str.size(); ++i)
{
if (str[i] == '(')
{
count += 1;
}
cout << "str[i]: " << str[i] << endl;
if (count <= 4)
{
str.erase(0, 1);
//str.replace(0, 1, "");
}
cout << "String: " << str << endl;
if (count == 4)
{
break;
}
cout << "Counter: " << count << endl;
}
cout << "Final string: " << str << endl;
system("PAUSE");
return 0;
}
在我上面展示的示例中,我的目标是(至少)获取字符串:
"1.32544e-7 0 0 ) ) )"
从原始字符串中提取
"( 1221 ( 0 0 0 ) (1224.478541112155452 (1.32544e-7 0 0 ) ) )"
更准确地说,我想提取价值
"1.32544e-7"
并转换为 double 以便在计算中使用。
我已成功删除
" 0 0 ) ) )"
因为它是一种常数值。
谢谢!