Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.26 KB | None | 0 0
  1. while (linha != null){
  2.             for(int i=0;i<v_ordens.length;i++){
  3.                 if(existeOrdem(linha,v_ordens[i])){
  4.                     linha222=linha.replaceAll(v_ordens[i],"*"+v_ordens[i]+"*");
  5.                 }
  6.  
  7.                 out.write(linha222);
  8.                 out.newLine();
  9.             }
  10.             linha = in.readLine();
  11.         }
  12.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement