drh19790711 2014-07-01 23:23
浏览 16
已采纳

如何从以美元符号开头的字符串中获取浮点格式中唯一的数字?

I've following code:

<?php
  $amount = '$40.0';
?>

I want to get the number 40 only(in float form) from the string $40 i.e. after excluding the dollar sign. The number entered by user could be even float also like $345.894534. In case of float number, the entire float number I should get except the dollar sign. Also the variable can be empty at a times so the operation of typecasting should perform only when the variable contains some value. How should I do this in optimum way and by making use of ready made functions available in PHP? Can somebody please help me in this regard?Thanks in advance.

  • 写回答

2条回答 默认 最新

  • dongyukui8330 2014-07-01 23:26
    关注
    $amount = floatval(str_replace('$','','$40.2356'));   //0 for empty string
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

悬赏问题

  • ¥20 双硬盘安装Ubuntu后windows 无法挂载硬盘
  • ¥15 帮我利用jupyter 运行一个正确的代码
  • ¥15 如何使用Gephi软件和Python包中的GephiStreamer交互
  • ¥15 sqlite加密问题咨询
  • ¥15 appdesigner接收不到udp组播的数据
  • ¥15 verilog 非阻塞赋值下的移位拼接错误
  • ¥100 两个按钮控制一个LED
  • ¥15 用C语言写离散数学相关问题
  • ¥30 如何用python的GephiStreamer连接到gephi中,把Python和Gephi的具体操作过程都展示,重点回答Gephi软件的调试,以及如果代码的端口在浏览器中无法显示怎么处理
  • ¥15 ansys机翼建模肋参数
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部