This is a super simple browser-based application that replaces list items. You can change one or more items to new items or rewrite a part of an existing item with a new text fragment. You can match items for replacement using the items themselves or using a regular expression. The input list items can have any format (comma-separated, tab-separated, or vertical to-do items) and for your convenience, you can also remove empty items from the output and clear items from surrounding spaces. Created by list geeks from team Browserling.
This is a super simple browser-based application that replaces list items. You can change one or more items to new items or rewrite a part of an existing item with a new text fragment. You can match items for replacement using the items themselves or using a regular expression. The input list items can have any format (comma-separated, tab-separated, or vertical to-do items) and for your convenience, you can also remove empty items from the output and clear items from surrounding spaces. Created by list geeks from team Browserling.
This online tool replaces certain list items with new items. Additionally, it can also remove parts of an item, change the order of parts of an item, and replace parts of an item with new parts. Suppose you have a list of animals and you want to replace all items containing "cat" with "kitty"; or you have a list of temperature readings and you want to replace Celsius "°C" with Fahrenheit "°F"; or you have a list of items in the format "part1-part2" and you want to swap it to "part2-part1"; or you have a list of items that start with a bullet point, such as "* item" and you want to convert it to just "item". With this program, all these operations can be easily done! First, paste your list in the input field and specify the input and output separators for the items. The input separators can be specified using a character (for example, a comma ",", a semicolon ";", or a newline "\n") or they can be specified using a regular expression (for example, all spaces "/\s+/", or a colon followed by a possible space ": ?"). The output delimiter can be specified using simple characters or a short string. Next, you'll have to choose one of two replacement modes. The first allows you to replace a specific item with a new one. For example, in this mode, you can replace all "cat"s with "kitty"s. And the second mode allows you to replace the items matching a regular expression with a new string that can use the old parts of the items in the new format. For example, if your regexp is "/°C/" that matches Celsius, then the replacement can be "°F" that will replace it with Fahrenheit. Here you can optionally use capturing groups and back-references to do the replacement. For example, to change the order of parts in an item, you'll use a regexp "/(part1)-(part2)/" and the replacement will be "$2-$1" (these are back-references). Another example is changing the numbering format of a list from "1. 2. 3." to "1) 2) 3)". There are also several quick and easy options to clear items from surrounding spaces and remove empty items. Listabulous!
This online tool replaces certain list items with new items. Additionally, it can also remove parts of an item, change the order of parts of an item, and replace parts of an item with new parts. Suppose you have a list of animals and you want to replace all items containing "cat" with "kitty"; or you have a list of temperature readings and you want to replace Celsius "°C" with Fahrenheit "°F"; or you have a list of items in the format "part1-part2" and you want to swap it to "part2-part1"; or you have a list of items that start with a bullet point, such as "* item" and you want to convert it to just "item". With this program, all these operations can be easily done! First, paste your list in the input field and specify the input and output separators for the items. The input separators can be specified using a character (for example, a comma ",", a semicolon ";", or a newline "\n") or they can be specified using a regular expression (for example, all spaces "/\s+/", or a colon followed by a possible space ": ?"). The output delimiter can be specified using simple characters or a short string. Next, you'll have to choose one of two replacement modes. The first allows you to replace a specific item with a new one. For example, in this mode, you can replace all "cat"s with "kitty"s. And the second mode allows you to replace the items matching a regular expression with a new string that can use the old parts of the items in the new format. For example, if your regexp is "/°C/" that matches Celsius, then the replacement can be "°F" that will replace it with Fahrenheit. Here you can optionally use capturing groups and back-references to do the replacement. For example, to change the order of parts in an item, you'll use a regexp "/(part1)-(part2)/" and the replacement will be "$2-$1" (these are back-references). Another example is changing the numbering format of a list from "1. 2. 3." to "1) 2) 3)". There are also several quick and easy options to clear items from surrounding spaces and remove empty items. Listabulous!
In this example, we are making a list of pizzas for a party. Unfortunately, when we called our favorite pizza place, they said that they don't make Pepperoni pizzas today, so we replaced it with a Hawaiian pizza. To do this, we separated the list items with a newline character and entered the names of the old and new pizzas in the "Replace Specific Items" options. Now we can forward the list to the pizza shop and they'll be able to make all pizzas for us. 😋
In this example, we load a list of products from a shady store which has the currency codes mixed up. To set all prices in dollars, we select the "Replace With Regex" replacement mode. We use the regular expression "/[€₴¥£]/" to match all currency symbols and change them to the dollar symbol "$". Also, we use a regular expression to separate the input items and turn the two-column list into a single-column item list using the rx "/\t|\n/".
In this example, we emojify a list of honey types by replacing the word "Honey" in all the items with a beautiful Unicode emoji. We separate the honey types by a comma and also trim them from surrounding spaces. We activate the regular expression replacement mode and rewrite the substring "Honey" into a single character "🍯".
In this example, we re-number a pre-trip todo list. The original numbering is in the number-with-a-dot form but we want the numbering to be wrapped in square brackets. To do this, we select the regex-replacement mode, set the match pattern to "/(\d+)\./", and replace it with the pattern "[$1]". As a result, the counter values that are wrapped in parentheses "(\d+)" (in the regex) are saved in the special variable "$1" (called a back-reference) that is then used in the "[$1]" replacement string. With this trick, all counters are now wrapped in square brackets.
In this example, we add an exclamation mark at the end of each item in a New Year's greetings list in different languages of the world. We split the items of the vertical list with the newline character "\n" and remove empty items. We use the regular expression "/$/" to match the end of the items and insert an exclamation character "!" in that place.
In this example, we're working with a synonyms list. When we copied the file from a Mac to a PC, somehow the file format changed and all synonyms now have an "x" between the words. We want to delete this "x" and replace it with something better. To do it we match it via a regular expression /x/ and set the new replacement to " is a synonym of ".
You can pass input to this tool via ?input query argument and it will automatically compute output. Here's how to type it in your browser's address bar. Click to try!
View and edit lists in a neat browser-based list editor.
Split list items into chunks.
Create the powerlist of the given list.
Extract the first item from a list.
Extract all items except the first of a list.
Run a JavaScript function on every list item (map function).
Run the reduce function on a list.
Quickly find and print items that interest you in a list.
Quickly find and print items that repeat in a list.
Quickly find and remove items that are unique in a list.
Given start and stop indexes, extract a sublist from a list.
Shift list items to the left or right (or up and down).
Add indentation to all list items.
Make a list go increasingly sideways (to the left or right).
Quickly create a mirror copy of a list.
Invert the order of items in a list (last becomes first, etc).
Create multiple rows from a single list.
Create an Excel (XLS/XLSX) file from a list.
Create a PDF file from a list.
Create a LaTeX list from a regular text list.
Create a HTML list from a regular text list.
Create a Markdown list from a regular text list.
Find the difference between two lists.
Find the difference between three lists.
Remove elements from a list that appear in the other list.
Find items that are shared between two or more lists.
Find items that are unique in two or more lists.
Join two or more lists together item by item.
Split an interleaved list into two or more separate lists.
Append a second list at the end of the first list.
Create pairs from all list items.
Remove list items at certain index positions.
Add new items at the end of a list.
Modify a list in-place by adding, replacing, or removing items.
Remove all indentation levels from a list and make it flat.
Quickly apply the bold effect to all list items.
Quickly apply the italic effect to all list items.
Quickly rewrite all list items in cursive.
Quickly change the font of all list items.
Quickly add an underscore to all list items.
Quickly add a strikethrough to all list items.
Quickly change the letter case of all items to title case.
Quickly change the letter case of all items to proper case.
Quickly randomly change the letter case of all items.
Quickly change the letter case of all items to small letters.
Quickly change the letter case of all items to capital letters.
Quickly remove any numeration from a list of items.
Generate a list with no items (just bullet points).
Quickly create a graphical representation of a list.
Create an image with a cloud of list items.
Create an image with list items going in a spiral.
Make list items go in a zigzag.
Add errors and corruption to a list.
Convert any list to base64 encoding.
Convert any list from base64 encoding back to a list.
Convert any list to URL encoding.
Convert any list from URL encoding back to a list.
Create a JSON array from a list.
Create a list from a JSON array.
Create an XML document from a list.
Create a list from an XML document.
Create a YAML file from a list.
Create a list from a YAML file.
Create a binary list from a text list.
Create a text list from a binary list.
Compress a list so it uses less space.
Create an animation with a list being scrolled.
Let Zalgo loose on a list and create list-chaos.
Subscribe to our updates. We'll let you know when we release new tools, features, and organize online workshops.
Enter your email here
We're Browserling — a friendly and fun cross-browser testing company powered by alien technology. At Browserling our mission is to make people's lives easier, so we created this collection of online list tools. Our tools are focused on getting things done quickly and as soon as you load your list in the input of any of our tools, you'll instantly get the result. Our list tools are actually powered by our web developer tools that we created over the last couple of years. Check them out!