This article illustrates how Android programming implements the search for phone numbers from strings. Share to everyone for your reference, specific as follows:
/**
* Find a numeric string from a String * *
private list<string> getnumbers (string content) {
list<string> Digitlist = new arraylist<string> ();
Pattern p = pattern.compile ("(\\d+)");
Matcher m = p.matcher (content);
while (M.find ()) {
String find = M.group (1). toString ();
Digitlist.add (find);
return digitlist;
}
For more information on Android-related content readers can view the site topics: "Android Debugging techniques and common problems solution summary", "Android Development introduction and Advanced Course", "Android Multimedia operating skills Summary (audio, video, recording, etc.)", " Android Basic Components Usage Summary, Android View tips Summary, Android layout layout tips and Android Control usage summary
I hope this article will help you with the Android program.