string replace1(string subject, string|function(string:string) with)
replace one (first) occurance of a pattern in a subject
example: > Regexp.PCRE("b[^-]*m")->replace1("abam-boom-fooabadoom","gurka"); Result: "agurka-boom-fooabadoom"