如何将“abcd1234”转换为int 1234

时间:2015-03-23 17:43:32

标签: java

public class testcount {
    public static void main(String[] args) {

        int c;
         String test = "ABCD1234";

    }
}

如何从String test转换为int c,答案为1234

1 个答案:

答案 0 :(得分:0)

使用int c = Integer.parseInt(str);

将int转换为字符串