*) fixed bug where dots were added after numbers < 1000: "123" was transformed to "123." which is undesirable

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4206 6c8d7289-2bf4-0310-a012-ef5d649a1542
This commit is contained in:
low012 2007-11-11 21:42:50 +00:00
parent da73cde86e
commit a4010f7dc8

View File

@ -425,16 +425,18 @@ public class plasmaGrafics {
private static String addDots(String word) {
String tmp = "";
int len = word.length();
while(len > 3) {
if(tmp.equals("")) {
tmp = word.substring(len-3,len);
} else {
tmp = word.substring(len-3,len) + "." + tmp;
if (len > 3) {
while(len > 3) {
if(tmp.equals("")) {
tmp = word.substring(len-3,len);
} else {
tmp = word.substring(len-3,len) + "." + tmp;
}
word = word.substring(0,len-3);
len = word.length();
}
word = word.substring(0,len-3);
len = word.length();
word = word + "." + tmp;
}
word = word + "." + tmp;
return word;
}