删除结构变量中的特殊字符

发布于 2024-11-04 06:57:23 字数 122 浏览 0 评论 0原文

what_if_var[0].price(类型为 char [10])的值为“$15555.665”。是否有办法从值中删除“$”(如“15555.665”)并将该值转换为双精度?

what_if_var[0].price (type is char [10]) has the value of "$15555.665". Is there is anyway to remove "$" from the value (like "15555.665") and convert the value into double?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

月光色 2024-11-11 06:57:23

如果您始终知道 '$' 将是第一个字符,您可以尝试:

double num = strtod (what_if_var[0].price + 1, NULL);

If you always know that the '$' is going to be the first character, you could just try:

double num = strtod (what_if_var[0].price + 1, NULL);
天邊彩虹 2024-11-11 06:57:23

检查函数 strtod,将字符串转换为双精度。

Check the function strtod, converts a string to double.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文