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)(.*)


_______________________________________________
pmwiki-users mailing list
[email protected]
http://www.pmichaud.com/mailman/listinfo/pmwiki-users

Reply via email to