hello, i need to capture all matches for a group. for example if 'ab c' =~ /^(.)*$/ i would like to get array [ 'a', 'b', ' ', 'c' ] could not figure out how to do it in ruby. String#scan did not seem to be the right thing. please help. thanks konstantin