标签: java
public class testcount { public static void main(String[] args) { int c; String test = "ABCD1234"; } }
如何从String test转换为int c,答案为1234?
String test
int c
1234
答案 0 :(得分:0)
使用int c = Integer.parseInt(str);
int c = Integer.parseInt(str);