如何在java中删除字符串前面的零并转换为数字
我有字符串 0000001.45
,我想删除字符串前面的零并将字符串转换为 long。是否可以在没有循环的情况下进行转换。 java有一些功能可以实现这一点。
I have string 0000001.45
and I want to remove zero in front of the string and convert string to long. Is it possible to cast without loops. Have java some function for this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好吧,首先想到的是:
Double 类可以解析掉前导零,并且强制转换将转换为 long。
Well, the first thing that comes to mind:
The Double class can parse away the leading zeros, and the cast will convert to long.
查看 Long.parseLong() 或所有不同 Number 类型的等效类。我认为您需要解析它的 float 或 double 然后将其转换为 long 类型。
Have a look to the Long.parseLong() or equivalent classes for all the different Number types. I think you will need to parse it has a float or double then convert it to a long type.