Guest User

Untitled

a guest
Jun 22nd, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. String command = null;
  2. if (line.contains(" ")) {
  3. command = line.trim().substring(0, line.indexOf(' ')).toUpperCase();
  4. } else {
  5. command = line.trim().toUpperCase();
  6. }
  7.  
  8. vs
  9.  
  10.  
  11. val cmd = (if(line.contains(" ")) line.substring(0,line.indexOf(" ")) else line).trim.toUpperCase
Add Comment
Please, Sign In to add comment