gpt4 book ai didi

c++ - 在 C++ 中解析坐标字符串的最佳方法

转载 作者:行者123 更新时间:2023-11-30 01:22:27 29 4
gpt4 key购买 nike

我想知道在 C++ 中解析在同一 string 中的坐标的最佳方法是什么。

例子:

1,5
42.324234,-2.656264

结果应该是两个double变量...

最佳答案

如果字符串的格式总是像x,y,那么这就足够了。

#include <string>
#include <sstream>

double x, y;
char sep;
string str = "42.324234,-2.656264";
istringstream iss(str);

iss >> x;
iss >> sep;
iss >> y;

关于c++ - 在 C++ 中解析坐标字符串的最佳方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16296219/

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