More and more, after puzzling with regex, I find myself taking CSS shortcuts that deal with the problem in a non-destructive way.
In the case of the OP, the links could be made to disappear using an attribute selector:
a[title="wikilink"] {visibility: hidden;}
|