Advertisement
Guest User

Untitled

a guest
Feb 7th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. package kademika;
  2.  
  3. public class FrameOneStringSix {
  4.  
  5. public static void main(String[] args) {
  6. String mtQuote = "Let us always meet each other with smile, for the smile is the beginning of love.";
  7. String newMtQuote = mtQuote.replace("smile",":)");
  8. System.out.println(newMtQuote);
  9. }
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement