Skip to content

Instantly share code, notes, and snippets.

@mant-is
mant-is / wordify.rb
Last active February 28, 2021 17:18
wordify.rb
def string_to_words_array(string)
dictionary = []
temp_word = ""
string = string.downcase.split.join ' '
string.each_char do |char|
if char.ord.between? 97, 122 or char.ord == 45
temp_word << char