从字符串中获取键/值对并存储在映射中
将字符串分成两部分的最佳方法是什么?我有这个,但无法正确获取“名称”,因为 substr 不允许我设置从哪里开始和从哪里结束,只能设置从哪里开始以及有多少个字符(我不知道):
string query = "key=value";
string key;
string value;
int positionOfEquals = query.find("=");
key = query.substr(0, positionOfEquals );
value = query.substr(positionOfEquals + 1);
What is the best way to split a string in two? I have this but can't get 'name' right as the substr doesnt allow me to set where to start from and where to finish, only where to start from and for how many characters (which is unknown to me):
string query = "key=value";
string key;
string value;
int positionOfEquals = query.find("=");
key = query.substr(0, positionOfEquals );
value = query.substr(positionOfEquals + 1);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的方法很好,但仍然有一个错误。如果没有
'='
怎么办?Yours is a fine approach, but you still have one bug. What if there is no
'='
?