Advertisement
Nostrada1

Untitled

Jan 29th, 2020
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. public String getLoginName()
  2. {
  3. int nameLength = 4;
  4. int idLength = 3;
  5.  
  6. if (name.length() < 4){
  7. nameLength = name.length();
  8. }
  9.  
  10. if (id.length() < 3){
  11. idLength = id.length();
  12. }
  13. return name.substring(0,nameLength) + id.substring(0,idLength);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement