If I have downloaded Wikipedia XML dumps, is there any way of removing all of the internal links from within an XML file?

Thanks

link|improve this question
Thanks everyone for the help. – Tris Thomas Apr 1 '09 at 12:20
Which method did you settle on, out of curiosity? – Adrian Archer Apr 1 '09 at 13:18
Not yet decided, because unfortunately just removing the [[ doesn't work because of the extra formatting Wikipedia does. I'm not too confident on bots yet, so it's on hold at the moment, until I can pay someone to do it! So, no method! Thanks for all the help everyone, very useful. – Tris Thomas Apr 2 '09 at 20:44
feedback

5 Answers

up vote 0 down vote accepted

One thing you could do, if you are importing them into a local wiki, is to import all the files you want, then use a robot (eg. pywikipediabot is easy to use) to get rid of all the internal links.

link|improve this answer
Better yet, if your wiki is going to be used somewhere that you have internet access, you could change all the internal links to [[wikipedia:PageName|PageName]], then they would refer back to their original articles. – Adrian Archer Apr 1 '09 at 3:29
feedback

Wikipedia database dumps and information about using them are located here: Wikipedia:Database download. You should do this instead of writing a script to scrape Wikipedia.

link|improve this answer
Yeah found that, sorry I got my question wrong really! How can I remove the internal links from the xml files? – Tris Thomas Mar 31 '09 at 23:06
feedback

Removed as Q has now changed

link|improve this answer
Could you please update your question. This will increase the probability of getting help (Note that this site works like a wiki where you can edit your content again) – 0xA3 Mar 31 '09 at 23:09
Have done, didn't realise I could! Sorry & thanks – Tris Thomas Mar 31 '09 at 23:11
No prob, welcome to SO :-) – 0xA3 Mar 31 '09 at 23:17
feedback

You could do a search and replace in your favorite text editor, replacing [[ and ]] with nothing.

link|improve this answer
feedback

I would try to use XSLT to transform the XML file into another XML file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown