Skip to content

Instantly share code, notes, and snippets.

@konsumer
Created July 2, 2015 19:47
Show Gist options
  • Save konsumer/fa1d0734e8a08be766ad to your computer and use it in GitHub Desktop.
Save konsumer/fa1d0734e8a08be766ad to your computer and use it in GitHub Desktop.
puts "Enter text to search"
text = gets.chomp
puts "Enter a word to search and redact;"
redact = gets.chomp
words = text.split(" ")
words.each do |word|
if word == redact
print "REDACTED"
else
print word + " "
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment