Previous Next Edit Rename Undo Search Administration
| Documentation |
Const Ungreedy As Integer = 512Specifies un-greedy matching by default, as though each repetition modifier were followed by "?". For example, with a subject of "aabaaaab" and a pattern of "a.+b", by default the match text would be the entire string, but with Ungreedy specified, the match would return "aab".