我可以生成字符串是這樣的:字符串,模式匹配
String str = "Phone number %s just texted about property %s";
String.format(str, "(714) 321-2620", "690 Warwick Avenue (679871)");
//Output: Phone number (714) 321-2620 just texted about property 690 Warwick Avenue (679871)
我想實現的是反向的這一點。輸入將下面的字符串
電話號碼(714)321-2620只是發短信約690物業華威大道(679871)
我想要檢索, 「(714)321-2620」 & 「690 Warwick Avenue(679871)」from input
任何人都可以給指針,如何在Java或Android中實現這一點?
預先感謝您。
拖放*電話號碼*和*只是發短信關於財產*。然後將新的字符串分成兩部分。你會得到你所需要的。這裏是[Android中的字符串](http://developer.android.com/reference/java/lang/String.html)。 – 2013-03-06 08:29:29