在C中获取子字符串
我有一个以下格式的字符串: “R: 625.5m E:-32768m”
拉出 625.5 最有效的方法是什么?
I have a string in the following format:
"R: 625.5m E:-32768m"
What's the most efficient way to pull out the 625.5?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最好的选择是使用 sscanf 从字符串中读取格式化信息。
Your best bet is to use sscanf to read formatted information from the string.
sscanf
是解析具有固定格式的简单字符串的良好候选者。sscanf
is a good candiate to parse simple strings with fixed format.