Ruby - Regular Expressions
How do you correctly use Ruby's
scan method to extract all lowercase letters from a string text?scan method to extract all lowercase letters from a string text?scan method takes a regex and returns all matches. Using /[a-z]/ will find each lowercase letter.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions