Guest User

Untitled

a guest
Jan 24th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. puts "Say something "
  2. text = gets.chomp
  3. text.downcase!
  4. puts "Words you want to redact ?"
  5. redact = gets.chomp
  6. redact.downcase!
  7. words = text.split(" ")
  8.  
  9. words.each do |w|
  10. if w == redact
  11. print "REDACTED "
  12. else
  13. print w.capitalize + " "
  14. end
  15. end
Add Comment
Please, Sign In to add comment