str = "
Paragraph 1
Paragraph 2
" re1 = .RegularExpression~new("?*
", "MINIMAL") re1~match(str) re2 = .RegularExpression~new("?*
", "MAXIMAL") re2~match(str) say "re1 (minimal) matched" str~substr(1, re1~position) say "re2 (maximal) matched" str~substr(1, re2~position) EXIT ::requires "rxregexp.cls"