Guest User

Untitled

a guest
Jun 19th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. def smiley(str)
  2. str = str.sub(':)', "<img src='/images/emoticons/1.gif' alt='smile'/>")
  3. str = str.sub(':(', "<img src='/images/emoticons/2.gif' alt='sad'/>")
  4. str = str.sub(';)', "<img src='/images/emoticons/3.gif' alt='wink'/>")
  5. str = str.sub(':D', "<img src='/images/emoticons/4.gif' alt='grin'/>")
  6. str = str.sub(':P', "<img src='/images/emoticons/5.gif' alt='tongue'/>")
  7. end
Add Comment
Please, Sign In to add comment