B
Billy_270
Hi!
I have a text "*.jpg;*.bmp;*.png" and I'd like to get "*.jpg", "*.bmp" and
"*.png". I've tried the pattern "^(?
\*\..+)
*(\*\..+)$", but it doen't
work because it returns "*.jpg;*.bmp" and "*.png" (I know, it returns the
longest sequence).
Is there a pattern that would return what I want (instead of storing the
second match and recursively getting the first match, re-applying the
pattern until only one match is returned)?
I have a text "*.jpg;*.bmp;*.png" and I'd like to get "*.jpg", "*.bmp" and
"*.png". I've tried the pattern "^(?


work because it returns "*.jpg;*.bmp" and "*.png" (I know, it returns the
longest sequence).
Is there a pattern that would return what I want (instead of storing the
second match and recursively getting the first match, re-applying the
pattern until only one match is returned)?