I am using a hash map to advance the character by position: "a"
into "b"
, etc., and to capitalize vowels.
def LetterChanges(str)
str.to_s
puts str
h = ("a".."z").to_a
i = ("b".."z").to_a.push("a")
hash = Hash[h.zip i]
new_str = str.downcase.gsub(/[a-z]/,hash)
new_str.gsub!(/[aeiou]/) {|n| n.upcase }
end
LetterChanges("hello world")
LetterChanges("sentence")
LetterChanges("replace!*")
LetterChanges("coderbyte")
LetterChanges("beautiful^")
LetterChanges("oxford")
LetterChanges("123456789ae")
LetterChanges("this long cake@&")
LetterChanges("a b c dee")
LetterChanges("a confusing /:sentence:/[ this is not!!!!!!!~")
The above code works as expected except for the examples "replace!*"
and "123456789ae"
, for which it returns nil
. Why is this?
String#gsub!
returnsnil
when no substitution is performed.returns
nil
whennew_str
doesn't contain any vowel letters. This is the case for example, ifstr
is"replace!*"
,new_str
issfqmbdf!*
, no vowels.