Mass edit using regular expressions

Strona działa w trybie archiwalnym. Jest tylko do odczytu!

Enter one or more regular expressions (one per line) for matching, and one or more expressions to replace each match with. The first match-expression, if successful, will be replaced with the first replace-expression, and so on. See the PHP function preg_replace() for details.

Pages to edit (do not use a namespace: prefix):

 
This is a list of:
  •  
  •  
  •  
  •  

Search for:

Replace with:

Podgląd opisu:

Here are some hints and examples for accomplishing common tasks:

MatchReplaceEffect
/$/abcAppend some text to the end of the page - great for adding pages to categories
/$/\n[[Category:New]]Append some text to the end of the page - great for adding pages to categories
{{OldTemplate}}Remove some text from all the pages in the list
\[\[Category:[^]]+\]\]Remove all categories from a page (note the escaping of the square brackets in the wikicode.) The replacement values should not be escaped.