in reply to Re: Find First character of each word in a string
in thread Find First character of each word in a string

But:

DB<3> print 'my cardio workout' =~ m/\b\w/g; mcw

Maybe:

DB<4> print map uc, 'my cardio workout' =~ m/\b\w/g; MCW

Update: Oops: LanX beat me to the punch.