我在我的android應用程序中使用以下代碼拆分字符串。但它變得崩潰了。這裏有什麼問題。它說的就像PatternSyntaxException。在Android中拆分字符串
String quotes_string = "1.agshjdgasfghsfjhsdfhjsfhjgj.#**#2.dfjngdhfkgjkfglkhjkh.#**#3.fdghjkhdgkklf";
String[] apps = QuotesActivity.quotes_string.split("#**#");
String quote = apps[0];
txt_quotes.setText(quote);
請幫我解決這個問題。提前感謝。