gpt4 book ai didi

java - 函数来确定值是否可以转换为 int、double 或其他类型?

转载 作者:行者123 更新时间:2023-12-01 23:26:14 25 4
gpt4 key购买 nike

如果有一个字符串变量,其中包含一个数字字符串,有没有函数可以判断该值是否可以转换为int、double或其他类型?我需要java中的函数名称

最佳答案

String sent3 = "123";
System.out.println(sent3.matches("[0-9]+"));

System.out.println(sent3.matches("[0-9]+\\.[0-9]+"));// for double

输出:- true

如果输出为true,则可以将其转换为int。

Follow this link for more regex

关于java - 函数来确定值是否可以转换为 int、double 或其他类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19946257/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com