细绳 :
"75,000", "is", "95%", "or", "95/100" "of", "monthly", "income"
o/p:
"is","%, "or", "/", "of", "monthly", "income"
我在下面尝试:在for循环中
if (String.matches("[\\d]*[.,]*[\\d%]"))
{
String = String.replaceAll("[\\d]*[.,]*[\\d%]","");
String.previous();
String.set(token);
String.remove();
String.next();
}
但它根本没有收到数字。
帮助将不胜感激