Skip to content

Instantly share code, notes, and snippets.

@angel333
Created November 4, 2011 17:36
Show Gist options
  • Save angel333/1339954 to your computer and use it in GitHub Desktop.
Save angel333/1339954 to your computer and use it in GitHub Desktop.
Odtrhávání nuly s tečkou...
// .. odtrhneme zbytecnou tecku s nulou
if (vysledek.endsWith(".0"))
vysledek = vysledek.substring(0, vysledek.length() - 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment