Thanks ahead of time, sorry if this is dumb, but I for the life of me cannot nail this down.
(Example)
match_string = “This Is The String”
matching = /[a-z]+\s/.match(match_string)
puts matching
All I want to grab is all of the lowercase characters and print them out, but I seem to not be able to find a way to do it this way. I know the regex above is not correct in what I want and is just a example, but I have been trying different patterns for the last hour, still cannot seem to get what I want.