I have strings like below:
@property.one@some text here@property.two@another optional text here etc
which contains @.+?@ strings inside.
I'd like to capture all these "variables" into groups via one regexp matching but it seems like it's not possible as regexp returns only last captured group while repeating.
@[^@]+@instead of@.+@– sidyll Jul 26 '11 at 20:14