Replacer

This tool allows you to replace strings in a text, shuffle it around ect..

Regular Expression

Template (instructions)


Input

Output

Instructions

The replacer tool allows replacing of strings within a text. Use a regular expression to search inside the text. If you need to learn about regular expression, I recommend regex101.com. The template can be just a normal string or it can have expresstions of the shape "$x". The x is the number of the regex match group. For example: Regex: "([^\s]+) ([^\s]+)" Template: "$2 $1" Input: "Hello World" Output: "World Hello"

Examples