Is it possibile with one regex to validate this string and extract all names :
Input :
daz.Da zD.{Azd} .{AZDza}; D
name:{franck}{steve}{louis}
zefzef{z'f'z} fze fzef zef
ouptut :
[0] "franck"
[1] "steve"
[2] "louis"
Here is what I got : name:(?:{(.*?)})
but I don't know how to repeat (one or more) this expression (?:{(.*?)})
to extract all name after name:
.
I don't want to use regex python package that supports repeated capturing groups.