*) 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) { private static String addDots(String word) {
String tmp = ""; String tmp = "";
int len = word.length(); int len = word.length();
while(len > 3) { if (len > 3) {
if(tmp.equals("")) { while(len > 3) {
tmp = word.substring(len-3,len); if(tmp.equals("")) {
} else { tmp = word.substring(len-3,len);
tmp = word.substring(len-3,len) + "." + tmp; } else {
tmp = word.substring(len-3,len) + "." + tmp;
}
word = word.substring(0,len-3);
len = word.length();
} }
word = word.substring(0,len-3); word = word + "." + tmp;
len = word.length();
} }
word = word + "." + tmp;
return word; return word;
} }