Home > comp > gb.pcre > regexp > ungreedy 
 en fr de es it nl pl pt pt_BR mk sq ca hu cs tr ar fa vi ko ja ru zh zh_TW eo
Previous  Next  Edit  Rename  Undo  Search  Administration  
Documentation  
Warning! This page is not translated.  See english version 
Regexp.Ungreedy (gb.pcre)
Const Ungreedy As Integer = 512

Specifies 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".