I'm trying to replace all vowels in a string with a "*"
This is what I have at the moment
string = "alphabet"
string.gsub! "a", "*"
string.gsub! "e", "*"
string.gsub! "i", "*"
string.gsub! "o", "*"
string.gsub! "u", "*"
I want string to equal "*lph*b*t". What's the easiest way to do this?