noskule wrote:
> hi list
> I need some help about a regexpr. It should match Group.Something but
> not Group.HomePage.
>
The following regexp works:
Group\.(?!HomePage)
if you also want to capture the group name, then use this:
Group\.(?!HomePage)(.*)