gpt4 book ai didi

java - 如何将特定格式的字符串转换为整数

转载 作者:行者123 更新时间:2023-12-01 06:54:05 25 4
gpt4 key购买 nike

我有一个字符串,我想将其转换为整数。

示例 - 我有以下格式的字符串

输入:ABCD00000123

输出:123

提前致谢

最佳答案

// First remove all non number characters from String 
input= input.replaceAll( "[^\\d]", "" );
// Convert it to int
int num = Integer.parseInt(input);

例如

input = "ABCD00000123"; 

之后

input= input.replaceAll( "[^\\d]", "" );   

输入为“00000123”

 int num = Integer.parseInt(input);

int 将为 123。

如果输入始终采用问题中提到的格式,这是简单的解决方案之一。考虑数字字符相对于非数字字符的位置可能有多种情况,例如
0123ABC
0123ABC456
ABC0123DE

关于java - 如何将特定格式的字符串转换为整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17018141/

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