Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to check if a TextView contains a certain string

Hi I want to add an if statement that checks to see if a text in a textview (called TextView1) contains a ".". I know I can check to see if the text equals ".". But I dont know how to check if the text contains a ".". Can anyone help me with this? Thanks

I dont know what to do to TextArea1 to check if it contains a decimal point

if (TextArea1      ){
    //Do Something
}
like image 490
Matt9Atkins Avatar asked Mar 28 '12 20:03

Matt9Atkins


1 Answers

if(TextArea1.getText().toString().contains("."))
like image 87
Eng.Fouad Avatar answered Oct 02 '22 15:10

Eng.Fouad