# Keep just the lower case vowels $data = keep("The quick brown fox jumped over the lazy dogs","aeiou","C") MsgOk msg=$data |
# Just keep all the digits found using RegEx $data = keep("This is cache 19 in a series of 54 caches","\d*","R") MsgOk msg=$data |