Answers:
请参阅Integer类和静态parseInt()
方法:
http://developer.android.com/reference/java/lang/Integer.html
Integer.parseInt(et.getText().toString());
您可能需要NumberFormatException
在解析时发现问题,所以:
int myNum = 0;
try {
myNum = Integer.parseInt(et.getText().toString());
} catch(NumberFormatException nfe) {
System.out.println("Could not parse " + nfe);
}
使用正则表达式:
String s="your1string2contain3with4number";
int i=Integer.parseInt(s.replaceAll("[\\D]", ""));
输出:i = 1234;
如果需要第一个数字组合,则应尝试以下代码:
String s="abc123xyz456";
int i=NumberFormat.getInstance().parse(s).intValue();
输出:i = 123;
使用正则表达式:
int i=Integer.parseInt("hello123".replaceAll("[\\D]",""));
int j=Integer.parseInt("123hello".replaceAll("[\\D]",""));
int k=Integer.parseInt("1h2el3lo".replaceAll("[\\D]",""));
输出:
i=123;
j=123;
k=123;
如ashish sahu所述,使用正则表达式是实现此目的的最佳方法
public int getInt(String s){
return Integer.parseInt(s.replaceAll("[\\D]", ""));
}
试试这个代码,它确实有效。
int number = 0;
try {
number = Integer.parseInt(YourEditTextName.getText().toString());
} catch(NumberFormatException e) {
System.out.println("parse value is not valid : " + e);
}
您应该隐藏String才能浮动。这是工作。
float result = 0;
if (TextUtils.isEmpty(et.getText().toString()) {
return;
}
result = Float.parseFloat(et.getText().toString());
tv.setText(result);
您可以使用以下命令将字符串解析为整数:
int value = Integer.parseInt(textView.getText()。toString());
(1) 输入: 12然后它将起作用..因为textview将此12数字作为“ 12”字符串。
(2)输入: “ abdul”,那么它将抛出一个异常,即NumberFormatException。因此,要解决此问题,我们需要使用try catch,如下所述:
int tax_amount=20;
EditText edit=(EditText)findViewById(R.id.editText1);
try
{
int value=Integer.parseInt(edit.getText().toString());
value=value+tax_amount;
edit.setText(String.valueOf(value));// to convert integer to string
}catch(NumberFormatException ee){
Log.e(ee.toString());
}
您可能还想参考以下链接以获取更多信息:http : //developer.android.com/reference/java/lang/Integer.html
您也可以一行完成:
int hello = Integer.parseInt(((Button)findViewById(R.id.button1)).getText().toString().replaceAll("[\\D]", ""));
从执行顺序读取
findViewById(R.id.button1)
((Button)______)
将转换View
为Button
.GetText()
以从Button获取文本输入.toString()
以将可变字符转换为字符串.ReplaceAll()
与"[\\D]"
与“”(无),以取代所有的非数字字符Integer.parseInt()
获取并从仅数字的字符串中返回一个整数。有可用的扩展方法可将其解析为其他原始类型。
"10".toInt()
"10".toLong()
"true".toBoolean()
"10.0".toFloat()
"10.0".toDouble()
"10".toByte()
"10".toShort()
String num = "10";
Integer.parseInt(num );
有五种方法可以转换第一种方法:
String str = " 123" ;
int i = Integer.parse(str);
output : 123
第二种方式:
String str = "hello123world";
int i = Integer.parse(str.replaceAll("[\\D]" , "" ) );
output : 123
第三种方式:
String str"123";
int i = new Integer(str);
output "123
第四种方式:
String str"123";
int i = Integer.valueOf(Str);
output "123
第五种方式:
String str"123";
int i = Integer.decode(str);
output "123
可能还有其他方式,但这就是我现在记得的